Skip to content
Snippets Groups Projects
Commit 11275dfe authored by tbrehm's avatar tbrehm
Browse files

Fixed: FS#754 - mailfilter problem

parent 721fb2a7
No related branches found
No related tags found
No related merge requests found
......@@ -70,6 +70,7 @@ class page_action extends tform_actions {
$mailuser = $app->db->queryOneRecord("SELECT sys_groupid, custom_mailfilter FROM mail_user WHERE mailuser_id = ".$this->dataRecord["mailuser_id"]);
$rule_content = $mailuser['custom_mailfilter']."\n".$app->db->quote($this->getRule());
$rule_content = mysql_real_escape_string($rule_content);
$app->db->datalogUpdate('mail_user', "custom_mailfilter = '$rule_content'", 'mailuser_id', $this->dataRecord["mailuser_id"]);
// set permissions
......
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