diff options
Diffstat (limited to 'modules/blog/blog.module')
-rw-r--r-- | modules/blog/blog.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module index 4efb8c291..2a757cfec 100644 --- a/modules/blog/blog.module +++ b/modules/blog/blog.module @@ -32,7 +32,7 @@ function blog_perm() { function blog_access($op, $node, $account) { switch ($op) { case 'create': - // Anonymous users cannot post even if they have the permission. + // Anonymous users cannot post even if they have the permission. return user_access('create blog entries', $account) && $account->uid; case 'update': return user_access('edit any blog entry', $account) || (user_access('edit own blog entries', $account) && ($node->uid == $account->uid)); |