friendica/mod/login.php

8 lines
176 B
PHP
Raw Normal View History

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