From 92a7a6260887ac74a60fa9280fac31de82777bed Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Wed, 1 Jul 2015 16:22:08 +0200 Subject: [PATCH] fix mobile-view --- boot.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/boot.php b/boot.php index 6e1951bffd..fbef7fa34f 100644 --- a/boot.php +++ b/boot.php @@ -1485,8 +1485,11 @@ if(! function_exists('current_theme')) { if($theme_name === '---') { // user has selected to have the mobile theme be the same as the normal one - $system_theme = ''; - $theme_name = ''; + $system_theme = $standard_system_theme; + $theme_name = $standard_theme_name; + + if($page_theme) + $theme_name = $page_theme; } } }