]> git.mxchange.org Git - friendica.git/blobdiff - index.php
Merge pull request #516 from fermionic/20121029-auto-redir-fix
[friendica.git] / index.php
index eaa7295e26cd8e565e8097410a749c2bf11c4df4..7d7674530ad1aa5cb574c2efb364ea012ea5e3d7 100644 (file)
--- a/index.php
+++ b/index.php
@@ -29,6 +29,8 @@ $install = ((file_exists('.htconfig.php') && filesize('.htconfig.php')) ? false
 
 @include(".htconfig.php");
 
+
+
 $lang = get_browser_language();
        
 load_translation_table($lang);
@@ -366,6 +368,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;