diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-06-08 19:31:27 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-06-08 19:31:27 +0000 |
commit | b0081e5ac9275ffdf9b7042f305e17315fa77682 (patch) | |
tree | 51572768799ba031a0740abd068c7f7edbeecf65 /modules/aggregator | |
parent | 54ddba4eea4316b875609264774ffba467f96e5d (diff) | |
download | brdo-b0081e5ac9275ffdf9b7042f305e17315fa77682.tar.gz brdo-b0081e5ac9275ffdf9b7042f305e17315fa77682.tar.bz2 |
- Bring back the "blog it" icon. Patch #47 by Al. Thanks.
(I don't like the suggested icon so I suggest we continue to use the existing one, which I don't like either but oh well. Thoughts?)
Diffstat (limited to 'modules/aggregator')
-rw-r--r-- | modules/aggregator/aggregator.module | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module index 9eb9b1aa1..3b4fcdeff 100644 --- a/modules/aggregator/aggregator.module +++ b/modules/aggregator/aggregator.module @@ -71,8 +71,7 @@ function import_format_item($item, $feed = 0) { global $user; if ($user->uid && user_access("maintain personal blog")) { -// $output .= " ". l("<img src=\"". theme("image", "blog.gif") ."\" border=\"0\" width=\"12\" height=\"16\" alt=\"". t("Blog this item") ."\" />", "node/add/blog&iid=$item->iid", array("title" => t("Comment on this news item in your personal blog."))); - $output .= "<div class=\"icon\">(". l("b", "node/add/blog&iid=$item->iid", array("title" => t("Comment on this news item in your personal blog."))) .")</div>"; + $output .= "<div class=\"icon\">". l("<img src=\"". theme("image", "blog.gif") ."\" border=\"0\" width=\"12\" height=\"12\" alt=\"". 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 |