diff options
author | alecpl <alec@alec.pl> | 2010-10-14 17:02:25 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-10-14 17:02:25 +0000 |
commit | 1ac5431877d0a081b6aa5c2481c0b8cabbf59beb (patch) | |
tree | f7dd3494960cd9aedc68ee667731d4ba394d6d83 /program/include/rcube_template.php | |
parent | 2d1d68bc7e1683bca869fcd1eca517ef209097d8 (diff) |
- Fix bug in rcube_plugin::local_skin_path()
Diffstat (limited to 'program/include/rcube_template.php')
-rwxr-xr-x | program/include/rcube_template.php | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/program/include/rcube_template.php b/program/include/rcube_template.php index e9b2b2118..a30c4f3b2 100755 --- a/program/include/rcube_template.php +++ b/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; |