diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2004-10-29 19:43:51 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2004-10-29 19:43:51 +0000 |
commit | 979b482c7ace3357bae1305a5c90b190a0d8ecc2 (patch) | |
tree | 0c77b4c7ae6a8e4adcdfda09c0075531f03d1eeb /modules/aggregator/aggregator.module | |
parent | f46a82da51947f0b3deec4eff44d307b9cf04324 (diff) | |
download | brdo-979b482c7ace3357bae1305a5c90b190a0d8ecc2.tar.gz brdo-979b482c7ace3357bae1305a5c90b190a0d8ecc2.tar.bz2 |
- #12305: Blog it icon was broken due to missing parameter.
Diffstat (limited to 'modules/aggregator/aggregator.module')
-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 dae3f08b2..730615ea9 100644 --- a/modules/aggregator/aggregator.module +++ b/modules/aggregator/aggregator.module @@ -1064,7 +1064,7 @@ function theme_aggregator_block_item($item, $feed = 0) { global $user; if ($user->uid && module_exist('blog') && user_access('edit own blog')) { - if ($image = theme('misc/blog.png', t('blog it'), t('blog it'))) { + 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") .'</div>'; } } |