summaryrefslogtreecommitdiff
path: root/admin
diff options
context:
space:
mode:
authorChristian Fowler <spider@viovio.com>2008-10-20 21:40:12 +0000
committerChristian Fowler <spider@viovio.com>2008-10-20 21:40:12 +0000
commitfde76307752b065805b677d4e190f827e763814b (patch)
treedf1015eeed8fe10282811343e3c62565cf50a90f /admin
parent2c307f88bcdd9107a0c6f3d8c8eaaeca0d114d04 (diff)
downloadtags-fde76307752b065805b677d4e190f827e763814b.tar.gz
tags-fde76307752b065805b677d4e190f827e763814b.tar.bz2
tags-fde76307752b065805b677d4e190f827e763814b.zip
BIG CHANGE: migrate p_*_edit permissions to p_*_update permission naming convention, hasEditPermission is now hasUpdatePermission, many explicit perm checks have been cleaned up to hasUpdatePermission
Diffstat (limited to 'admin')
-rwxr-xr-xadmin/schema_inc.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/admin/schema_inc.php b/admin/schema_inc.php
index 102f467..2086807 100755
--- a/admin/schema_inc.php
+++ b/admin/schema_inc.php
@@ -48,7 +48,6 @@ $gBitInstaller->registerUserPermissions( TAGS_PKG_NAME, array(
array( 'p_tags_admin', 'Can admin tags', 'admin', TAGS_PKG_NAME ),
array( 'p_tags_create', 'Can create tags', 'registered', TAGS_PKG_NAME ),
array( 'p_tags_view', 'Can view tags', 'basic', TAGS_PKG_NAME ),
- array( 'p_tags_edit', 'Can edit tags', 'editors', TAGS_PKG_NAME ),
- array( 'p_tags_remove', 'Can delete tags', 'admin', TAGS_PKG_NAME ),
+ array( 'p_tags_moderate', 'Can edit tags', 'editors', TAGS_PKG_NAME ),
) );
?>