diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-21 15:15:09 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-21 15:15:09 +0000 |
commit | 534a834569273b3052918ee7c1a64d56157eccbd (patch) | |
tree | 2389de95954dd55de465dfa39ae097515d8ced7b /engine/lib/access.php | |
parent | 5f4c2a7e1af0a4c51474b26fa045b6330997e38f (diff) | |
download | elgg-534a834569273b3052918ee7c1a64d56157eccbd.tar.gz elgg-534a834569273b3052918ee7c1a64d56157eccbd.tar.bz2 |
Creating the constants ACCESS_PUBLIC, ACCESS_PRIVATE, ACCESS_LOGGED_IN
git-svn-id: https://code.elgg.org/elgg/trunk@670 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/access.php')
-rw-r--r-- | engine/lib/access.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/lib/access.php b/engine/lib/access.php index d45520c07..e81bd2da0 100644 --- a/engine/lib/access.php +++ b/engine/lib/access.php @@ -91,7 +91,7 @@ /**
* Some useful constant definitions
*/
- define('PRIVATE',0);
- define('LOGGED_IN',1);
- define('PUBLIC',2);
+ define('ACCESS_PRIVATE',0);
+ define('ACCESS_LOGGED_IN',1);
+ define('ACCESS_PUBLIC',2);
?>
\ No newline at end of file |