redirect to home after logging in using login url

このコミットが含まれているのは:
Friendika 2011-08-11 04:28:06 -07:00
コミット 0db145dafa
1個のファイルの変更2行の追加0行の削除

ファイルの表示

@ -3,6 +3,8 @@
function login_content(&$a) {
if(x($_SESSION,'theme'))
unset($_SESSION['theme']);
if(local_user())
goaway(z_root());
return login(($a->config['register_policy'] == REGISTER_CLOSED) ? false : true);
}