diff options
| author | wjames5 <will@tekimaki.com> | 2008-10-03 17:20:15 +0000 |
|---|---|---|
| committer | wjames5 <will@tekimaki.com> | 2008-10-03 17:20:15 +0000 |
| commit | f09ffeb70a716134ef0105f1932d867d0325f789 (patch) | |
| tree | e3b05d6c15221528163ba1d6dbcabdb546f30d1e /admin | |
| parent | 983baeac4a05417797606074aa52d3316cf9d9d3 (diff) | |
| download | blogs-f09ffeb70a716134ef0105f1932d867d0325f789.tar.gz blogs-f09ffeb70a716134ef0105f1932d867d0325f789.tar.bz2 blogs-f09ffeb70a716134ef0105f1932d867d0325f789.zip | |
CORE CHANGE: cleave Create permission from Edit permission so that they are distinct. See mailing list for more details
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/schema_inc.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/admin/schema_inc.php b/admin/schema_inc.php index 22912ed..5df0995 100644 --- a/admin/schema_inc.php +++ b/admin/schema_inc.php @@ -71,7 +71,8 @@ $gBitInstaller->registerSchemaSequences( BLOGS_PKG_NAME, $sequences ); $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 post to a blog', 'registered', 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_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), |
