diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-09-01 15:13:45 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-09-01 15:13:45 +0000 |
| commit | c5dcd563e8f3ff616bbc3bd5be890b8595c1ed8a (patch) | |
| tree | 14ea5dbd86c3070edc9d5764fa06ac4187668f49 /roundcubemail | |
| parent | 3c87431b676e6f0ee93486d17cb4f1ddc853f7c7 (diff) | |
- remove redundant JQ() use
git-svn-id: https://svn.roundcube.net/trunk@2905 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail')
| -rw-r--r-- | roundcubemail/program/include/rcube_json_output.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_json_output.php b/roundcubemail/program/include/rcube_json_output.php index 7bfca0a6d..ea23dc20b 100644 --- a/roundcubemail/program/include/rcube_json_output.php +++ b/roundcubemail/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); } /** |
