mirror of
https://github.com/YunoHost-Apps/hubzilla_ynh.git
synced 2024-09-03 19:26:21 +02:00
17 lines
267 B
PHP
17 lines
267 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 = $a->get_baseurl();
|
|
|
|
goaway($address);
|
|
}
|
|
|