summaryrefslogtreecommitdiff
path: root/modules/blog/blog.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-02-06 19:38:28 +0000
committerDries Buytaert <dries@buytaert.net>2008-02-06 19:38:28 +0000
commitb8a1eab1fb8abb1238f1e5a63757f0d93b2a3cc6 (patch)
tree0dff0188249d8c3d2999d9b4342e3c1e99711b9e /modules/blog/blog.module
parentbddba847f569f872aefa1618d2fe49d69f274c63 (diff)
downloadbrdo-b8a1eab1fb8abb1238f1e5a63757f0d93b2a3cc6.tar.gz
brdo-b8a1eab1fb8abb1238f1e5a63757f0d93b2a3cc6.tar.bz2
- Patch #210131 by dvessel, catch, John, et al: updated jQuery library.
Diffstat (limited to 'modules/blog/blog.module')
-rw-r--r--modules/blog/blog.module2
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));