friendica/mod/login.php

21 lines
365 B
PHP
Raw Normal View History

2010-07-01 23:48:07 +00:00
<?php
use Friendica\App;
use Friendica\Core\System;
function login_content(App $a) {
2017-04-30 04:01:26 +00:00
if (x($_SESSION, 'theme')) {
unset($_SESSION['theme']);
2017-04-30 04:01:26 +00:00
}
2017-04-30 04:01:26 +00:00
if (x($_SESSION, 'mobile-theme')) {
unset($_SESSION['mobile-theme']);
2017-04-30 04:01:26 +00:00
}
2017-04-30 04:01:26 +00:00
if (local_user()) {
goaway(System::baseUrl());
2017-04-30 04:01:26 +00:00
}
2010-07-09 00:59:19 +00:00
return login(($a->config['register_policy'] == REGISTER_CLOSED) ? false : true);
}