friendica/mod/login.php

17 lines
306 B
PHP
Raw Normal View History

2010-07-02 01:48:07 +02:00
<?php
function login_content(App $a) {
if (x($_SESSION,'theme')) {
unset($_SESSION['theme']);
}
if (x($_SESSION,'mobile-theme')) {
unset($_SESSION['mobile-theme']);
}
if (local_user()) {
goaway(z_root());
}
2010-07-09 02:59:19 +02:00
return login(($a->config['register_policy'] == REGISTER_CLOSED) ? false : true);
}