diff --git a/mod/toggle_mobile.php b/mod/toggle_mobile.php
index 6c3651393..89b73cd44 100644
--- a/mod/toggle_mobile.php
+++ b/mod/toggle_mobile.php
@@ -2,15 +2,17 @@
function toggle_mobile_init(App &$a) {
- if(isset($_GET['off']))
+ if (isset($_GET['off'])) {
$_SESSION['show-mobile'] = false;
- else
+ } else {
$_SESSION['show-mobile'] = true;
+ }
- if(isset($_GET['address']))
+ if (isset($_GET['address'])) {
$address = $_GET['address'];
- else
+ } else {
$address = App::get_baseurl();
+ }
goaway($address);
}
diff --git a/view/theme/frost-mobile/theme.php b/view/theme/frost-mobile/theme.php
index 7fe17ce7e..4ca592f4c 100644
--- a/view/theme/frost-mobile/theme.php
+++ b/view/theme/frost-mobile/theme.php
@@ -22,11 +22,13 @@ function frost_mobile_content_loaded(App &$a) {
// I could do this in style.php, but by having the CSS in a file the browser will cache it,
// making pages load faster
- if( $a->module === 'home' || $a->module === 'login' || $a->module === 'register' || $a->module === 'lostpass' ) {
+ if ( $a->module === 'home' || $a->module === 'login' || $a->module === 'register' || $a->module === 'lostpass' ) {
// $a->page['htmlhead'] = str_replace('$stylesheet', App::get_baseurl() . '/view/theme/frost-mobile/login-style.css', $a->page['htmlhead']);
$a->theme['stylesheet'] = App::get_baseurl() . '/view/theme/frost-mobile/login-style.css';
}
- if( $a->module === 'login' )
+
+ if ( $a->module === 'login' ) {
$a->page['end'] .= '';
+ }
}
diff --git a/view/theme/frost/theme.php b/view/theme/frost/theme.php
index 964ea88ec..7746109e5 100644
--- a/view/theme/frost/theme.php
+++ b/view/theme/frost/theme.php
@@ -24,8 +24,10 @@ function frost_content_loaded(App &$a) {
//$a->page['htmlhead'] = str_replace('$stylesheet', App::get_baseurl() . '/view/theme/frost/login-style.css', $a->page['htmlhead']);
$a->theme['stylesheet'] = App::get_baseurl() . '/view/theme/frost/login-style.css';
}
- if( $a->module === 'login' )
+
+ if ( $a->module === 'login' ) {
$a->page['end'] .= '';
+ }
}