diff options
Diffstat (limited to '')
-rw-r--r-- | include/page_tail.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/page_tail.php b/include/page_tail.php index a24176da5..b150611fd 100644 --- a/include/page_tail.php +++ b/include/page_tail.php @@ -66,11 +66,11 @@ if ($conf['show_gt']) $template->assign('debug', $debug_vars ); //------------------------------------------------------------- mobile version -if ( !empty($conf['mobile_theme']) && get_device() != 'desktop') +if ( !empty($conf['mobile_theme']) && (get_device() != 'desktop' || mobile_theme())) { $template->assign('TOGGLE_MOBILE_THEME_URL', add_url_params( - make_index_url(), + duplicate_index_url(), array('mobile' => mobile_theme() ? 'false' : 'true') ) ); |