2012-09-13 03:35:51 +00:00
|
|
|
<?php
|
|
|
|
|
2017-04-30 04:07:00 +00:00
|
|
|
use Friendica\App;
|
2017-08-26 06:04:21 +00:00
|
|
|
use Friendica\Core\System;
|
2017-04-30 04:07:00 +00:00
|
|
|
|
2017-01-09 12:14:55 +00:00
|
|
|
function toggle_mobile_init(App $a) {
|
2012-09-13 03:35:51 +00:00
|
|
|
|
2016-12-20 11:36:51 +00:00
|
|
|
if (isset($_GET['off'])) {
|
2012-09-13 03:35:51 +00:00
|
|
|
$_SESSION['show-mobile'] = false;
|
2016-12-20 11:36:51 +00:00
|
|
|
} else {
|
2012-09-13 03:35:51 +00:00
|
|
|
$_SESSION['show-mobile'] = true;
|
2016-12-20 11:36:51 +00:00
|
|
|
}
|
2012-09-13 03:35:51 +00:00
|
|
|
|
2016-12-20 11:36:51 +00:00
|
|
|
if (isset($_GET['address'])) {
|
2012-09-13 03:35:51 +00:00
|
|
|
$address = $_GET['address'];
|
2016-12-20 11:36:51 +00:00
|
|
|
} else {
|
2018-10-13 18:02:04 +00:00
|
|
|
$address = '';
|
2016-12-20 11:36:51 +00:00
|
|
|
}
|
2012-09-13 03:35:51 +00:00
|
|
|
|
2018-10-23 10:14:17 +00:00
|
|
|
System::externalRedirect($address);
|
2012-09-13 03:35:51 +00:00
|
|
|
}
|