aboutsummaryrefslogtreecommitdiffstats
path: root/identification.php
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2006-03-01 04:33:52 +0000
committerrvelices <rv-github@modusoptimus.com>2006-03-01 04:33:52 +0000
commit8f33338fed3809c2b964cbe610658b143c96b6c9 (patch)
tree3fabd2d92953f3d24ad68819b3a6cf3abc1b9de1 /identification.php
parent3f329df09f02757cab96fd0f835b5f77ea3a044b (diff)
calendar improvement: month calendar view a la flickr
fix: html 4.01 compliant in rating.tpl fix: issue with IE from version 1052 (redirect on access denied) git-svn-id: http://piwigo.org/svn/trunk@1061 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'identification.php')
-rw-r--r--identification.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/identification.php b/identification.php
index b53e76a2d..ad270bc83 100644
--- a/identification.php
+++ b/identification.php
@@ -35,7 +35,7 @@ $errors = array();
$redirect_to = '';
if ( !empty($_GET['redirect']) )
{
- $redirect_to = $_GET['redirect'];
+ $redirect_to = urldecode($_GET['redirect']);
if ( $user['is_the_guest'] )
{
array_push($errors, $lang['access_forbiden']);
@@ -98,7 +98,7 @@ $template->assign_vars(
'U_LOST_PASSWORD' => PHPWG_ROOT_PATH.'password.php',
'U_HOME' => PHPWG_ROOT_PATH.'category.php',
'U_REDIRECT' => $redirect_to,
-
+
'F_LOGIN_ACTION' => PHPWG_ROOT_PATH.'identification.php'
));