summaryrefslogtreecommitdiff
path: root/admin
diff options
context:
space:
mode:
authorChristian Fowler <spider@viovio.com>2008-10-20 21:40:09 +0000
committerChristian Fowler <spider@viovio.com>2008-10-20 21:40:09 +0000
commit1b2e961896cf7c27ea7b6cdec89e8d6d7e13e921 (patch)
treec335418f827100e307c9350ab9a53563f5151148 /admin
parentabdd183957f633cbba1a2e0fbe4b37931abbd697 (diff)
downloadblogs-1b2e961896cf7c27ea7b6cdec89e8d6d7e13e921.tar.gz
blogs-1b2e961896cf7c27ea7b6cdec89e8d6d7e13e921.tar.bz2
blogs-1b2e961896cf7c27ea7b6cdec89e8d6d7e13e921.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')
-rw-r--r--admin/schema_inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/schema_inc.php b/admin/schema_inc.php
index 5df0995..4d9ac25 100644
--- a/admin/schema_inc.php
+++ b/admin/schema_inc.php
@@ -72,7 +72,7 @@ $gBitInstaller->registerUserPermissions( BLOGS_PKG_NAME, array(
array('p_blogs_create', 'Can create a blog', 'registered', BLOGS_PKG_NAME),
array('p_blogs_create_is_public', 'Can create a public blog', 'editors', BLOGS_PKG_NAME),
array('p_blogs_post', 'Can create a blog post', 'registered', BLOGS_PKG_NAME),
- array('p_blogs_edit', 'Can edit blogs and blog posts', 'editors', BLOGS_PKG_NAME),
+ array('p_blogs_update', 'Can update blogs and blog posts', 'editors', BLOGS_PKG_NAME),
array('p_blogs_send_post', 'Can email a blog post', 'registered', BLOGS_PKG_NAME),
array('p_blogs_admin', 'Can admin blogs', 'editors', BLOGS_PKG_NAME),
array('p_blogs_view', 'Can read blogs', 'basic', BLOGS_PKG_NAME),