alecpl
2008-06-15 23bea9d4e95c5381fcc8f05739dc60c9eb273049
program/include/rcube_json_output.php
@@ -34,7 +34,6 @@
    private $texts = array();
    private $commands = array();
    public $task = '';
    public $ajax_call = true;
    
    
@@ -43,7 +42,6 @@
     */
    public function __construct($task)
    {
        $this->task   = $task;
        $this->config = rcmail::get_instance()->config;
    }
    
@@ -64,7 +62,8 @@
     */
    public function set_pagetitle($title)
    {
        // ignore
   $name = $this->config->get('product_name');
   $this->command('set_pagetitle', JQ(empty($name) ? $title : $name.' :: '.$title));
    }
    /**
@@ -232,7 +231,7 @@
                implode(',', $args)
            );
        }
        return $out;
    }
}