summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2009-09-01 15:13:45 +0000
committeralecpl <alec@alec.pl>2009-09-01 15:13:45 +0000
commite0480e9df88af3d2da99016ddd11b04281b8b568 (patch)
tree70c323050581a8e3c6ac77930f54438daff5b310
parent172552a9eda168c87c4f4a0bf3b2fdf6ddf021b0 (diff)
- remove redundant JQ() use
-rw-r--r--program/include/rcube_json_output.php2
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);
}
/**