diff options
author | alecpl <alec@alec.pl> | 2009-09-01 15:13:45 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-09-01 15:13:45 +0000 |
commit | e0480e9df88af3d2da99016ddd11b04281b8b568 (patch) | |
tree | 70c323050581a8e3c6ac77930f54438daff5b310 /program/include/rcube_json_output.php | |
parent | 172552a9eda168c87c4f4a0bf3b2fdf6ddf021b0 (diff) |
- remove redundant JQ() use
Diffstat (limited to 'program/include/rcube_json_output.php')
-rw-r--r-- | program/include/rcube_json_output.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_json_output.php b/program/include/rcube_json_output.php index 7bfca0a6d..ea23dc20b 100644 --- a/program/include/rcube_json_output.php +++ b/program/include/rcube_json_output.php @@ -68,7 +68,7 @@ class rcube_json_output public function set_pagetitle($title) { $name = $this->config->get('product_name'); - $this->command('set_pagetitle', JQ(empty($name) ? $title : $name.' :: '.$title)); + $this->command('set_pagetitle', empty($name) ? $title : $name.' :: '.$title); } /** |