diff options
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; |