summaryrefslogtreecommitdiff
path: root/roundcubemail/program/include/rcube_template.php
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-10-14 17:02:25 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-10-14 17:02:25 +0000
commite5cd143222a741d12d599cf65460ef75243315fe (patch)
treed6e2821477adc79f54e6bc9f0ef965cc98d99c25 /roundcubemail/program/include/rcube_template.php
parent986bb5b62f0fb7463accc221bd7ab46844ce65e1 (diff)
- Fix bug in rcube_plugin::local_skin_path()
git-svn-id: https://svn.roundcube.net/trunk@4091 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/rcube_template.php')
-rwxr-xr-xroundcubemail/program/include/rcube_template.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/roundcubemail/program/include/rcube_template.php b/roundcubemail/program/include/rcube_template.php
index e9b2b2118..a30c4f3b2 100755
--- a/roundcubemail/program/include/rcube_template.php
+++ b/roundcubemail/program/include/rcube_template.php
@@ -30,17 +30,17 @@
*/
class rcube_template extends rcube_html_page
{
- var $app;
- var $config;
- var $framed = false;
- var $pagetitle = '';
- var $message = null;
- var $env = array();
- var $js_env = array();
- var $js_commands = array();
- var $object_handlers = array();
+ private $app;
+ private $config;
+ private $pagetitle = '';
+ private $message = null;
+ private $js_env = array();
+ private $js_commands = array();
+ private $object_handlers = array();
public $browser;
+ public $framed = false;
+ public $env = array();
public $type = 'html';
public $ajax_call = false;