mirror of
https://github.com/friendica/friendica
synced 2024-11-10 11:42:54 +00:00
a883514604
Signed-off-by: Roland Häder <roland@mxchange.org>
19 lines
288 B
PHP
19 lines
288 B
PHP
<?php
|
|
|
|
function toggle_mobile_init(&$a) {
|
|
|
|
if (isset($_GET['off'])) {
|
|
$_SESSION['show-mobile'] = false;
|
|
} else {
|
|
$_SESSION['show-mobile'] = true;
|
|
}
|
|
|
|
if (isset($_GET['address'])) {
|
|
$address = $_GET['address'];
|
|
} else {
|
|
$address = App::get_baseurl();
|
|
}
|
|
|
|
goaway($address);
|
|
}
|
|
|