diff options
author | Bharat Mediratta <bharat@menalto.com> | 2008-12-16 02:31:13 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2008-12-16 02:31:13 +0000 |
commit | dc089173456c95dcec1e6184b8e6b5b2810ced52 (patch) | |
tree | 756da1aa7e98ff9f98d0373c34035403a6510bc7 /core | |
parent | 02aa98b6e0f4bfdc70cbb28e16910c2f173072f9 (diff) |
Fix a bug where we were not deleting the .htaccess file on access::reset()
Diffstat (limited to 'core')
-rw-r--r-- | core/helpers/access.php | 6 | ||||
-rw-r--r-- | core/tests/Access_Helper_Test.php | 9 |
2 files changed, 12 insertions, 3 deletions
diff --git a/core/helpers/access.php b/core/helpers/access.php index 36ef9c5c..f40a5c7c 100644 --- a/core/helpers/access.php +++ b/core/helpers/access.php @@ -146,10 +146,10 @@ class access_Core { if ($perm_name =="view") { self::_update_access_view_cache($group, $album); if ($group->id == 1) { - if ($value) { - self::_delete_htaccess_files($album); - } else { + if ($value === self::DENY) { self::_create_htaccess_files($album); + } else { + self::_delete_htaccess_files($album); } } } else { diff --git a/core/tests/Access_Helper_Test.php b/core/tests/Access_Helper_Test.php index 4643eb1a..3141078d 100644 --- a/core/tests/Access_Helper_Test.php +++ b/core/tests/Access_Helper_Test.php @@ -275,9 +275,18 @@ class Access_Helper_Test extends Unit_Test_Case { $album = album::create($root->id, rand(), "test album"); $this->assert_false(file_exists($album->file_path() . "/.htaccess")); + access::deny(group::everybody(), "view", $album); $this->assert_true(file_exists($album->file_path() . "/.htaccess")); + access::allow(group::everybody(), "view", $album); $this->assert_false(file_exists($album->file_path() . "/.htaccess")); + + access::deny(group::everybody(), "view", $album); + $this->assert_true(file_exists($album->file_path() . "/.htaccess")); + + access::reset(group::everybody(), "view", $album); + $this->assert_false(file_exists($album->file_path() . "/.htaccess")); } + } |