diff options
author | friendica <info@friendica.com> | 2013-08-21 16:45:16 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-08-21 16:45:16 -0700 |
commit | f2545c0b8defd81ec2add5e97d2df41d5eba15fc (patch) | |
tree | cc418123094857acc0ec709fd56579460e66a702 | |
parent | d8ef1417fb2ff8d736e4392c118c51c63dc66b1d (diff) | |
parent | ab06b18f5b618bc2df80f309e6c9f1d10a6ba88f (diff) | |
download | volse-hubzilla-f2545c0b8defd81ec2add5e97d2df41d5eba15fc.tar.gz volse-hubzilla-f2545c0b8defd81ec2add5e97d2df41d5eba15fc.tar.bz2 volse-hubzilla-f2545c0b8defd81ec2add5e97d2df41d5eba15fc.zip |
Merge pull request #103 from cvogeley/master
More mobile stuff
-rwxr-xr-x | boot.php | 4 | ||||
-rw-r--r-- | mod/admin.php | 6 |
2 files changed, 5 insertions, 5 deletions
@@ -1965,8 +1965,8 @@ function current_theme(){ if($is_mobile) { if(isset($_SESSION['show_mobile']) && !$_SESSION['show_mobile']) { - $system_theme = ''; - $theme_name = ''; + $system_theme = ((isset($a->config['system']['theme'])) ? $a->config['system']['theme'] : ''); + $theme_name = ((isset($_SESSION) && x($_SESSION,'theme')) ? $_SESSION['theme'] : $system_theme); } else { $system_theme = ((isset($a->config['system']['mobile_theme'])) ? $a->config['system']['mobile_theme'] : ''); diff --git a/mod/admin.php b/mod/admin.php index df1a40019..7e8f7a301 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -365,11 +365,11 @@ function admin_page_site(&$a) { if($files) { foreach($files as $file) { $f = basename($file); - $theme_name = ((file_exists($file . '/.experimental')) ? sprintf("%s - Experimental", $f) : $f); - if (file_exists($file . '/.mobile')) { + $theme_name = ((file_exists($file . '/experimental')) ? sprintf("%s - Experimental", $f) : $f); + if (file_exists($file . '/mobile')) { $theme_choices_mobile[$f] = $theme_name; } - if (file_exists($file . '/.accessibility')) { + if (file_exists($file . '/accessibility')) { $theme_choices_accessibility[$f] = $theme_name; } $theme_choices[$f] = $theme_name; |