]> git.mxchange.org Git - friendica.git/blob - mod/login.php
quattro: in post display page, scroll to and flash selected comment
[friendica.git] / mod / login.php
1 <?php
2
3 function login_content(&$a) {
4         if(x($_SESSION,'theme'))
5                 unset($_SESSION['theme']);
6         if(local_user())
7                 goaway(z_root());
8         return login(($a->config['register_policy'] == REGISTER_CLOSED) ? false : true);
9
10 }