db949bb802
Only define functions if they have not been defined before, e.g. in themes. This makes it possible to override parts of a module and still use the other functions.
14 lines
326 B
PHP
14 lines
326 B
PHP
<?php
|
|
if(! function_exists('login_content')) {
|
|
function login_content(&$a) {
|
|
if(x($_SESSION,'theme'))
|
|
unset($_SESSION['theme']);
|
|
if(x($_SESSION,'mobile-theme'))
|
|
unset($_SESSION['mobile-theme']);
|
|
|
|
if(local_user())
|
|
goaway(z_root());
|
|
return login(($a->config['register_policy'] == REGISTER_CLOSED) ? false : true);
|
|
}
|
|
}
|