1
0
Fork 0

Revert "Coding convention applied - part 1"

This commit is contained in:
Hypolite Petovan 2017-03-21 12:02:59 -04:00 committed by GitHub
commit 7b352f3f74
181 changed files with 3507 additions and 4338 deletions

View file

@ -1,16 +1,13 @@
<?php
function login_content(App $a) {
if (x($_SESSION,'theme')) {
if(x($_SESSION,'theme'))
unset($_SESSION['theme']);
}
if (x($_SESSION,'mobile-theme')) {
if(x($_SESSION,'mobile-theme'))
unset($_SESSION['mobile-theme']);
}
if (local_user()) {
if(local_user())
goaway(z_root());
}
return login(($a->config['register_policy'] == REGISTER_CLOSED) ? false : true);
}