Skip to content
Snippets Groups Projects
Commit 3cdb9a8f authored by tbrehm's avatar tbrehm
Browse files

Fixed: FS#1642 - Adding new content filters breaks header_checks, body_checks etc.

parent 5645a5e5
No related branches found
No related tags found
No related merge requests found
......@@ -84,7 +84,7 @@ class postfix_filter_plugin {
$rules = $app->db->queryAllRecords($sql);
$content = '';
foreach($rules as $rule) {
$content .= $rule["pattern"]."\n";
$content .= $rule["pattern"];
$content .= " ".$rule["action"]." ".$rule["data"]."\n";
}
......@@ -115,7 +115,7 @@ class postfix_filter_plugin {
$rules = $app->db->queryAllRecords($sql);
$content = '';
foreach($rules as $rule) {
$content .= $rule["pattern"]."\n";
$content .= $rule["pattern"];
$content .= " ".$rule["action"]." ".$rule["data"]."\n";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment