mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-11 01:24:27 +02:00
Opps, forgot this ...
Signed-off-by: Roland Häder <roland@mxchange.org>
This commit is contained in:
parent
8d28135c59
commit
c22878643b
3 changed files with 13 additions and 7 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue