X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=index.php;h=17cdbbf00617f47d24e60cd6209eefbd5ddf88bc;hb=9daafe7489e12da476df8067b3411315e362ca4b;hp=eaa7295e26cd8e565e8097410a749c2bf11c4df4;hpb=51802b0ae828c0b2e01b27523f271431e47aff6d;p=friendica.git diff --git a/index.php b/index.php index eaa7295e26..17cdbbf006 100644 --- a/index.php +++ b/index.php @@ -366,6 +366,19 @@ if($a->module != 'install') { $a->page['htmlhead'] = replace_macros($a->page['htmlhead'], array('$stylesheet' => current_theme_url())); +if($a->is_mobile || $a->is_tablet) { + if(isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) { + $link = $a->get_baseurl() . '/toggle_mobile?address=' . curPageURL(); + } + else { + $link = $a->get_baseurl() . '/toggle_mobile?off=1&address=' . curPageURL(); + } + $a->page['footer'] = replace_macros(get_markup_template("toggle_mobile_footer.tpl"), array( + '$toggle_link' => $link, + '$toggle_text' => t('toggle mobile') + )); +} + $page = $a->page; $profile = $a->profile;