diff options
author | rvelices <rv-github@modusoptimus.com> | 2006-03-01 04:33:52 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2006-03-01 04:33:52 +0000 |
commit | 8f33338fed3809c2b964cbe610658b143c96b6c9 (patch) | |
tree | 3fabd2d92953f3d24ad68819b3a6cf3abc1b9de1 /include/functions_category.inc.php | |
parent | 3f329df09f02757cab96fd0f835b5f77ea3a044b (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 '')
-rw-r--r-- | include/functions_category.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions_category.inc.php b/include/functions_category.inc.php index 23a50b354..0214656bc 100644 --- a/include/functions_category.inc.php +++ b/include/functions_category.inc.php @@ -47,7 +47,7 @@ function check_restrictions($category_id) if (in_array($category_id, explode(',', $user['forbidden_categories']))) { $login_url = './identification.php?redirect='. - htmlentities(htmlentities($_SERVER['REQUEST_URI'])); + urlencode(urlencode($_SERVER['REQUEST_URI'])); if ( ! $user['is_the_guest'] ) { echo '<div style="text-align:center;">'; |