1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/hubzilla_ynh.git synced 2024-09-03 19:26:21 +02:00
hubzilla_ynh/sources/mod/toggle_mobile.php

18 lines
267 B
PHP
Raw Normal View History

<?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);
}