Fixed: FS#905 - Mailfilter PHP \n Broken
| | |
| | | function onAfterInsert() { |
| | | global $app, $conf; |
| | | |
| | | /* |
| | | $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 = $app->db->quote($rule_content); |
| | |
| | | |
| | | // set permissions |
| | | $app->db->query("UPDATE mail_user_filter SET sys_groupid = ".$mailuser['sys_groupid']." WHERE filter_id = ".$this->id); |
| | | |
| | | */ |
| | | $this->onAfterUpdate(); |
| | | |
| | | $app->db->query("UPDATE mail_user_filter SET sys_groupid = ".$mailuser['sys_groupid']." WHERE filter_id = ".$this->id); |
| | | } |
| | | |
| | | function onAfterUpdate() { |