diff options
author | friendica <info@friendica.com> | 2012-03-13 15:41:13 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-13 15:41:13 -0700 |
commit | 427362c324e5acfad18c72108a59a9e6e5b58550 (patch) | |
tree | 7046e107ea723a917959606bfc4c41d2c8ccd2b7 /boot.php | |
parent | dc84da520d7bde3f2e160d2573a549829fd022cf (diff) | |
parent | acc4bbeb6ebc832da2a8b5a37b764a6a53dd1214 (diff) | |
download | volse-hubzilla-427362c324e5acfad18c72108a59a9e6e5b58550.tar.gz volse-hubzilla-427362c324e5acfad18c72108a59a9e6e5b58550.tar.bz2 volse-hubzilla-427362c324e5acfad18c72108a59a9e6e5b58550.zip |
Merge branch 'pull'
Diffstat (limited to 'boot.php')
-rwxr-xr-x | boot.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1209,7 +1209,7 @@ function current_theme(){ $a = get_app(); $system_theme = ((isset($a->config['system']['theme'])) ? $a->config['system']['theme'] : ''); - $theme_name = ((is_array($_SESSION) && x($_SESSION,'theme')) ? $_SESSION['theme'] : $system_theme); + $theme_name = ((isset($_SESSION) && x($_SESSION,'theme')) ? $_SESSION['theme'] : $system_theme); if($theme_name && file_exists('view/theme/' . $theme_name . '/style.css')) return($theme_name); @@ -1335,7 +1335,7 @@ function profile_tabs($a, $is_owner=False, $nickname=Null){ array( 'label' => t('Profile'), 'url' => $url.'/?tab=profile', - 'sel' => (($tab=='profile')?'active':''), + 'sel' => ((isset($tab) && $tab=='profile')?'active':''), ), array( 'label' => t('Photos'), |