diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-06-15 19:41:15 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-06-15 19:41:15 +0000 |
commit | 2edb978db35e3840a77b28f75abb666f0228870f (patch) | |
tree | ef17b5955e612d24c9dc188f7e7e80e3d6f4e6ed /modules/aggregator | |
parent | 8a9a5ba3da89822aa81481a1072f97eb9b0f4a64 (diff) | |
download | brdo-2edb978db35e3840a77b28f75abb666f0228870f.tar.gz brdo-2edb978db35e3840a77b28f75abb666f0228870f.tar.bz2 |
- Bugfix: fixed glitch with "blog it" images. Patch #15 by Al.
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 2b80d20c9..bed70896e 100644 --- a/modules/aggregator/aggregator.module +++ b/modules/aggregator/aggregator.module @@ -71,7 +71,7 @@ function import_format_item($item, $feed = 0) { global $user; if ($user->uid && user_access("maintain personal blog")) { - $output .= "<div class=\"icon\">". l("<img src=\"". theme("image", "blog.gif") ."\" width=\"12\" height=\"12\" alt=\"". t("blog it") ."\" title=\"". t("blog it") ."\" style=\"border: 0px; />", "node/add/blog&iid=$item->iid", array("title" => t("Comment on this news item in your personal blog."), "class" => "blog-it")) ."</div>"; + $output .= "<div class=\"icon\">". l("<img src=\"". theme("image", "blog.gif") ."\" alt=\"". t("blog it") ."\" title=\"". t("blog it") ."\" />", "node/add/blog&iid=$item->iid", array("title" => t("Comment on this news item in your personal blog."), "class" => "blog-it")) ."</div>"; } // external link |