friendica/mod/login.php

10 lines
214 B
PHP
Raw Normal View History

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