show chosen desktop theme when SESSION['show_mobile'] is false

This commit is contained in:
Christian Vogeley 2013-08-21 22:12:22 +02:00
parent 5c0220df09
commit a944a879b1

View file

@ -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'] : '');