friendica/mod/login.php

8 lines
176 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']);
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
}