alecpl
2009-09-07 b48d9bf5d412a6f56f3f9ba4bad141ddfe175727
program/include/rcube_json_output.php
@@ -29,7 +29,7 @@
class rcube_json_output
{
    private $config;
    private $charset = 'UTF-8';
    private $charset = RCMAIL_CHARSET;
    private $env = array();
    private $texts = array();
    private $commands = array();
@@ -68,7 +68,7 @@
    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);
    }
    /**