diff options
author | rub <rub@piwigo.org> | 2007-05-14 21:08:53 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2007-05-14 21:08:53 +0000 |
commit | badf55178188376380e2162fae70e7b5f95dcbc8 (patch) | |
tree | 44672bf879f1777e6f8285189e003e477b314b57 /include/functions_cookie.inc.php | |
parent | 13bd2aed42642746f4506e6484214ecb55dabea8 (diff) |
Issue 0000619: bad result of cookie_path() function
Manage gallery install on directly on root directory
git-svn-id: http://piwigo.org/svn/trunk@2010 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/functions_cookie.inc.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/functions_cookie.inc.php b/include/functions_cookie.inc.php index 4b8f70b1e..4d585e20f 100644 --- a/include/functions_cookie.inc.php +++ b/include/functions_cookie.inc.php @@ -63,7 +63,10 @@ function cookie_path() $scr = substr($scr,0,strrpos( $scr,'/')); // add a trailing '/' if needed - $scr .= ($scr{strlen($scr)-1} == '/') ? '' : '/'; + if ((strlen($scr) == 0) or ($scr{strlen($scr)-1} !== '/')) + { + $scr .= '/'; + } if ( substr(PHPWG_ROOT_PATH,0,3)=='../') { // this is maybe a plugin inside pwg directory |