2010-07-01 16:48:07 -07:00
|
|
|
<?php
|
2016-02-05 21:52:39 +01:00
|
|
|
if(! function_exists('login_content')) {
|
2010-07-01 16:48:07 -07:00
|
|
|
function login_content(&$a) {
|
2011-01-07 04:33:34 -08:00
|
|
|
if(x($_SESSION,'theme'))
|
|
|
|
unset($_SESSION['theme']);
|
2012-09-06 17:24:34 -06:00
|
|
|
if(x($_SESSION,'mobile-theme'))
|
|
|
|
unset($_SESSION['mobile-theme']);
|
|
|
|
|
2011-08-11 04:28:06 -07:00
|
|
|
if(local_user())
|
|
|
|
goaway(z_root());
|
2010-07-08 17:59:19 -07:00
|
|
|
return login(($a->config['register_policy'] == REGISTER_CLOSED) ? false : true);
|
2016-02-05 21:52:39 +01:00
|
|
|
}
|
2012-09-06 17:24:34 -06:00
|
|
|
}
|