diff options
author | Simon L'nu <simon.lnu@gmail.com> | 2012-03-20 03:20:37 -0400 |
---|---|---|
committer | Simon L'nu <simon.lnu@gmail.com> | 2012-03-20 03:20:37 -0400 |
commit | 5642e9fa388bb84027a7b71a3baeef39c3aafcab (patch) | |
tree | 4a2b3979200fa9966e44bf4974e9276a20d22419 /boot.php | |
parent | 236eaf6ed09df34e62cf487712d909cb8a3b35d1 (diff) | |
parent | 5a5aadb743e055530aa071dd3e47705a3bf5d728 (diff) | |
download | volse-hubzilla-5642e9fa388bb84027a7b71a3baeef39c3aafcab.tar.gz volse-hubzilla-5642e9fa388bb84027a7b71a3baeef39c3aafcab.tar.bz2 volse-hubzilla-5642e9fa388bb84027a7b71a3baeef39c3aafcab.zip |
Merge branch 'master', remote-tracking branch 'remotes/upstream/master'
* remotes/upstream/master:
add IP address to failed login log message
modified: include/text.php Stupid bug fixed
cleanup after openid refactoring
refactor openid logins/registrations
modified: include/text.php deleted: images/diaspora.png deleted: images/smiley-bangheaddesk.gif deleted: images/smiley-beard.png deleted: images/smiley-shaka.gif deleted: images/smiley-whitebeard.png
some openid fixes, use identity url from openid server and normalise it.
support "no_smilies"
ctrl + left|right cursor keys to prev/next photos
add 'loggin_out' hook
* master:
Diffstat (limited to 'boot.php')
-rwxr-xr-x | boot.php | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -9,7 +9,7 @@ require_once('include/nav.php'); require_once('include/cache.php'); define ( 'FRIENDICA_PLATFORM', 'Friendica'); -define ( 'FRIENDICA_VERSION', '2.3.1285' ); +define ( 'FRIENDICA_VERSION', '2.3.1286' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); define ( 'DB_UPDATE_VERSION', 1132 ); @@ -713,15 +713,16 @@ function login($register = false, $hiddens=false) { $noid = get_config('system','no_openid'); + $dest_url = $a->get_baseurl(true) . '/' . $a->query_string; + if(local_user()) { $tpl = get_markup_template("logout.tpl"); } else { $tpl = get_markup_template("login.tpl"); - + $_SESSION['return_url'] = $a->query_string; } - $dest_url = $a->get_baseurl(true) . '/' . $a->query_string; $o .= replace_macros($tpl,array( |