diff options
author | thomascube <thomas@roundcube.net> | 2011-02-06 22:21:23 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-02-06 22:21:23 +0000 |
commit | 07b95dc49b31d131b1fecdabf2059a447935c196 (patch) | |
tree | 91f3fd3b86ecb88da28e16edceab52306bb3458e /program/include/rcube_template.php | |
parent | 361ce60948bfc0eb75a4c144f9e1e76c3cdd7f35 (diff) |
Delegate contact input validation to rcube_addressbook instance; accept already localized texts in rcube_output::show_message()
Diffstat (limited to 'program/include/rcube_template.php')
-rwxr-xr-x | program/include/rcube_template.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/program/include/rcube_template.php b/program/include/rcube_template.php index 2102aaa1f..70c175a98 100755 --- a/program/include/rcube_template.php +++ b/program/include/rcube_template.php @@ -255,10 +255,8 @@ class rcube_template extends rcube_html_page { if ($override || !$this->message) { $this->message = $message; - $this->command( - 'display_message', - rcube_label(array('name' => $message, 'vars' => $vars)), - $type); + $msgtext = rcube_label_exists($message) ? rcube_label(array('name' => $message, 'vars' => $vars)) : $message; + $this->command('display_message', $msgtext, $type); } } |