friendica/mod/login.php

10 lines
214 B
PHP
Raw Normal View History

2010-07-02 01:48:07 +02:00
<?php
function login_content(&$a) {
if(x($_SESSION,'theme'))
unset($_SESSION['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);
2010-07-02 01:48:07 +02:00
}