Fixed Issue #3833 Cant create mail filter.
Added missing strings to language file.
| | |
| | | $wb['keep_txt'] = 'Behalten'; |
| | | $wb['reject_txt'] = 'Abweisen'; |
| | | $wb['stop_txt'] = 'Stop'; |
| | | $wb['move_to_txt'] = 'Verschiebe nach'; |
| | | ?> |
| | |
| | | $wb['keep_txt'] = 'Keep'; |
| | | $wb['reject_txt'] = 'Reject'; |
| | | $wb['stop_txt'] = 'Stop'; |
| | | $wb['move_to_txt'] = 'Move to'; |
| | | ?> |
| | |
| | | global $app, $conf; |
| | | |
| | | // Get the parent mail_user record |
| | | $mailuser = $app->db->queryOneRecord("SELECT * FROM mail_user WHERE mailuser_id = ? AND ".$app->tform->getAuthSQL('r'). $_REQUEST["mailuser_id"]); |
| | | $mailuser = $app->db->queryOneRecord("SELECT * FROM mail_user WHERE mailuser_id = ? AND ".$app->tform->getAuthSQL('r'), $_REQUEST["mailuser_id"]); |
| | | |
| | | // Check if Domain belongs to user |
| | | if($mailuser["mailuser_id"] != $_POST["mailuser_id"]) $app->tform->errorMessage .= $app->tform->wordbook["no_mailuser_perm"]; |