diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-08-20 05:57:41 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-08-20 05:57:41 +0000 |
commit | 55eec8f66f909fd105074142d99e22e02b489991 (patch) | |
tree | 246f2e41d47fd55b83dfcb690919e65e17e62e96 /modules/aggregator | |
parent | e14c3aa6c0707c18005146f5311f0db0d5a1af3f (diff) | |
download | brdo-55eec8f66f909fd105074142d99e22e02b489991.tar.gz brdo-55eec8f66f909fd105074142d99e22e02b489991.tar.bz2 |
#79601: module_exist() -> module_exists()
Diffstat (limited to 'modules/aggregator')
-rw-r--r-- | modules/aggregator/aggregator.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module index 095d24ace..bcd08b8ef 100644 --- a/modules/aggregator/aggregator.module +++ b/modules/aggregator/aggregator.module @@ -1325,7 +1325,7 @@ function theme_aggregator_feed($feed) { function theme_aggregator_block_item($item, $feed = 0) { global $user; - if ($user->uid && module_exist('blog') && user_access('edit own blog')) { + if ($user->uid && module_exists('blog') && user_access('edit own blog')) { if ($image = theme('image', 'misc/blog.png', t('blog it'), t('blog it'))) { $output .= '<div class="icon">'. l($image, 'node/add/blog', array('title' => t('Comment on this news item in your personal blog.'), 'class' => 'blog-it'), "iid=$item->iid", NULL, FALSE, TRUE) .'</div>'; } |