summaryrefslogtreecommitdiff
path: root/modules/gallery/helpers/access.php
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2010-01-18 12:08:05 -0800
committerBharat Mediratta <bharat@menalto.com>2010-01-18 12:08:05 -0800
commit41a392611c0e602d2e14859e5c0d5bf9e61d0073 (patch)
tree7ae9af554abdd30fd73634edbcbda218c95e63c3 /modules/gallery/helpers/access.php
parent64357b3a2edf28c3c342931b13f6594153847148 (diff)
Change DENY and ALLOW to "0" and "1" to match the fact that ORM no
longer typecasts values as of http://dev.kohanaphp.com/issues/2459
Diffstat (limited to 'modules/gallery/helpers/access.php')
-rw-r--r--modules/gallery/helpers/access.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gallery/helpers/access.php b/modules/gallery/helpers/access.php
index 8ce7e436..e0a0e979 100644
--- a/modules/gallery/helpers/access.php
+++ b/modules/gallery/helpers/access.php
@@ -66,8 +66,8 @@
* the Access_Intent_Model
*/
class access_Core {
- const DENY = false;
- const ALLOW = true;
+ const DENY = "0";
+ const ALLOW = "1";
const INHERIT = null; // access_intent
const UNKNOWN = null; // cache (access_cache, items)