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_json_output.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_json_output.php')
-rw-r--r-- | program/include/rcube_json_output.php | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/program/include/rcube_json_output.php b/program/include/rcube_json_output.php index c6d3c25f9..d1c9de279 100644 --- a/program/include/rcube_json_output.php +++ b/program/include/rcube_json_output.php @@ -170,11 +170,8 @@ class rcube_json_output { 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); } } |