Skip to content
Snippets Groups Projects
Commit 324bfbde authored by Marius Burkard's avatar Marius Burkard
Browse files

Merge branch 'master' into 'stable-3.1'

fix sql query typo, closes #3762



See merge request !284
parents 9ab66a5b 8df4a32c
No related branches found
No related tags found
No related merge requests found
......@@ -80,7 +80,7 @@ class postfix_filter_plugin {
$type = $data["new"]["type"];
if($type != '') {
$sql = "SELECT * FROM mail_content_filter WHERE server_id = ? AND type = ?' AND active = 'y'";
$sql = "SELECT * FROM mail_content_filter WHERE server_id = ? AND type = ? AND active = 'y'";
$rules = $app->db->queryAllRecords($sql, $conf["server_id"], $type);
$content = '';
foreach($rules as $rule) {
......
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