diff options
author | friendica <info@friendica.com> | 2012-11-07 14:09:51 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-11-07 14:09:51 -0800 |
commit | cc8a11eee2c0f8c190ac421542845bfc3ae0b5c4 (patch) | |
tree | c1c97a545821135913bad018f039a505c8de7396 /boot.php | |
parent | 7501717d2e844fefb142cbbdac2bca5ab4d77754 (diff) | |
download | volse-hubzilla-cc8a11eee2c0f8c190ac421542845bfc3ae0b5c4.tar.gz volse-hubzilla-cc8a11eee2c0f8c190ac421542845bfc3ae0b5c4.tar.bz2 volse-hubzilla-cc8a11eee2c0f8c190ac421542845bfc3ae0b5c4.zip |
allow theme selection
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -405,8 +405,9 @@ if(! class_exists('App')) { public $account = null; // account record - private $channel = null; // channel record - private $observer = null; // xchan record + public $channel = null; // channel record + public $observer = null; // xchan record + private $perms = null; // observer permissions private $widgets = array(); // widgets for this page @@ -440,6 +441,7 @@ if(! class_exists('App')) { public $identities; public $css_sources = array(); public $js_sources = array(); + public $theme_info = array(); public $nav_sel; |