Skip to content

Commit 952df8e

Browse files
author
Till Brehm
committed
Fixed Issue #3833 Cant create mail filter.
Added missing strings to language file.
1 parent 1d46a3a commit 952df8e

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

interface/web/mail/lib/lang/de_mail_user_filter.lng

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,5 @@ $wb['domain_txt'] = 'Domain';
2525
$wb['keep_txt'] = 'Behalten';
2626
$wb['reject_txt'] = 'Abweisen';
2727
$wb['stop_txt'] = 'Stop';
28+
$wb['move_to_txt'] = 'Verschiebe nach';
2829
?>

interface/web/mail/lib/lang/en_mail_user_filter.lng

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,5 @@ $wb['domain_txt'] = 'Domain';
2525
$wb['keep_txt'] = 'Keep';
2626
$wb['reject_txt'] = 'Reject';
2727
$wb['stop_txt'] = 'Stop';
28+
$wb['move_to_txt'] = 'Move to';
2829
?>

interface/web/mail/mail_user_filter_edit.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ function onSubmit() {
7070
global $app, $conf;
7171

7272
// Get the parent mail_user record
73-
$mailuser = $app->db->queryOneRecord("SELECT * FROM mail_user WHERE mailuser_id = ? AND ".$app->tform->getAuthSQL('r'). $_REQUEST["mailuser_id"]);
73+
$mailuser = $app->db->queryOneRecord("SELECT * FROM mail_user WHERE mailuser_id = ? AND ".$app->tform->getAuthSQL('r'), $_REQUEST["mailuser_id"]);
7474

7575
// Check if Domain belongs to user
7676
if($mailuser["mailuser_id"] != $_POST["mailuser_id"]) $app->tform->errorMessage .= $app->tform->wordbook["no_mailuser_perm"];

0 commit comments

Comments
 (0)