aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorTobias Hößl <tobias@hoessl.eu>2012-02-28 13:42:12 +0000
committerTobias Hößl <tobias@hoessl.eu>2012-02-28 13:42:12 +0000
commit36a1a43f06dc2a0d55463c83154cce55fa3948ad (patch)
treed6ab66790474aaead1663762449db08faa064b07 /boot.php
parentf48556cbc08c0600e256f5964a553c666ee66372 (diff)
downloadvolse-hubzilla-36a1a43f06dc2a0d55463c83154cce55fa3948ad.tar.gz
volse-hubzilla-36a1a43f06dc2a0d55463c83154cce55fa3948ad.tar.bz2
volse-hubzilla-36a1a43f06dc2a0d55463c83154cce55fa3948ad.zip
Avoid notices
Diffstat (limited to 'boot.php')
-rwxr-xr-xboot.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/boot.php b/boot.php
index c89dae27c..e39504e11 100755
--- a/boot.php
+++ b/boot.php
@@ -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);