diff options
author | thomascube <thomas@roundcube.net> | 2008-06-14 12:23:08 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-06-14 12:23:08 +0000 |
commit | 83a7636872d58f044d1fac444268dd2e7c7ebaee (patch) | |
tree | f22bb7491d67ee0f5f509b70625b48d963a7e9eb /program/include/rcube_template.php | |
parent | f0d4b72a4e1d4292fe99e04836274b52f30c5cf4 (diff) |
More code cleanup
Diffstat (limited to 'program/include/rcube_template.php')
-rwxr-xr-x | program/include/rcube_template.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/program/include/rcube_template.php b/program/include/rcube_template.php index 0c0a9211b..5834e42ab 100755 --- a/program/include/rcube_template.php +++ b/program/include/rcube_template.php @@ -32,7 +32,6 @@ class rcube_template extends rcube_html_page { var $app; var $config; - var $task = ''; var $framed = false; var $pagetitle = ''; var $env = array(); @@ -56,7 +55,7 @@ class rcube_template extends rcube_html_page $this->config = $this->app->config->all(); //$this->framed = $framed; - $this->task = $task; + $this->set_env('task', $task); // add common javascripts $javascript = 'var '.JS_OBJECT_NAME.' = new rcube_webmail();'; @@ -542,7 +541,7 @@ class rcube_template extends rcube_html_page return $ver; } if ($object=='pagetitle') { - $task = $this->task; + $task = $this->env['task']; $title = !empty($this->config['product_name']) ? $this->config['product_name'].' :: ' : ''; if (!empty($this->pagetitle)) { |