diff options
author | rub <rub@piwigo.org> | 2007-01-02 22:37:08 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2007-01-02 22:37:08 +0000 |
commit | 481188f7ea77418b46100d66a383f9a98f4cd029 (patch) | |
tree | d4e9a452ebac29e2907440838787e276dcbacb03 /include/common.inc.php | |
parent | 0f2b554608c15cf92e3619dadfff188257f4f8e1 (diff) |
Issue ID 0000529 Re-Fixed.
Problem with "Options +MultiViews" .htaccess configuration.
Merge branch-1_6 1688:1689 into BSF
git-svn-id: http://piwigo.org/svn/trunk@1690 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/common.inc.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/common.inc.php b/include/common.inc.php index e07f34a5b..d97a44b07 100644 --- a/include/common.inc.php +++ b/include/common.inc.php @@ -178,9 +178,10 @@ if ($conf['gallery_locked']) if ($user['is_the_guest'] and !$conf['guest_access'] and !in_array( script_basename(), - array('identification.php', - 'password.php', - 'register.php' + // Array of basename without file extention + array('identification', + 'password', + 'register' ) ) ) |