]> git.mxchange.org Git - friendica.git/commitdiff
better location for toggle_mobile code
authorZach Prezkuta <fermion@gmx.com>
Thu, 3 Jan 2013 18:16:10 +0000 (11:16 -0700)
committerZach Prezkuta <fermion@gmx.com>
Thu, 3 Jan 2013 18:16:10 +0000 (11:16 -0700)
index.php

index dd19bb83360e57b18d8b465f2a4ce7ea528ffee1..19673fa7f9102c3aa7e79c2f26d9bf2b63a9c0fe 100644 (file)
--- a/index.php
+++ b/index.php
@@ -377,15 +377,9 @@ if($a->module != 'install') {
 }
 
 /**
- * Build the page - now that we have all the components
+ * Add a "toggle mobile" link if we're using a mobile device
  */
 
-if(!$a->theme['stylesheet'])
-       $stylesheet = current_theme_url();
-else
-       $stylesheet = $a->theme['stylesheet'];
-$a->page['htmlhead'] = replace_macros($a->page['htmlhead'], array('$stylesheet' => $stylesheet));
-
 if($a->is_mobile || $a->is_tablet) {
        if(isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) {
                $link = $a->get_baseurl() . '/toggle_mobile?address=' . curPageURL();
@@ -399,6 +393,16 @@ if($a->is_mobile || $a->is_tablet) {
                         ));
 }
 
+/**
+ * Build the page - now that we have all the components
+ */
+
+if(!$a->theme['stylesheet'])
+       $stylesheet = current_theme_url();
+else
+       $stylesheet = $a->theme['stylesheet'];
+$a->page['htmlhead'] = replace_macros($a->page['htmlhead'], array('$stylesheet' => $stylesheet));
+
 $page    = $a->page;
 $profile = $a->profile;