diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-08-16 05:49:45 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-08-16 05:49:45 +0000 |
commit | 8a2d5bede9a25af940fc5be248e81911fe056328 (patch) | |
tree | 97b95c0877028acd395cbf1605a148158b917265 /modules/blog | |
parent | db8c3edca566f38609175898dfd0ccba4b7cd07f (diff) | |
download | brdo-8a2d5bede9a25af940fc5be248e81911fe056328.tar.gz brdo-8a2d5bede9a25af940fc5be248e81911fe056328.tar.bz2 |
- Rewrote handling of forum icons and added default icons made by Steven
Wittens.
- Renamed some column titles in the forum module as per Moshe's suggestion.
- Introduced a 'more-link' class to position the 'more' links. Removed
hard-coded markup from the modules.
- Fixed bug in import module: the theme functions called a non-existing
function.
Diffstat (limited to 'modules/blog')
-rw-r--r-- | modules/blog/blog.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module index 1f3d1ed20..773e42283 100644 --- a/modules/blog/blog.module +++ b/modules/blog/blog.module @@ -266,7 +266,7 @@ function blog_block($op = "list", $delta = 0) { else { if (user_access("access content")) { $block["content"] = node_title_list(db_query_range("SELECT n.title, n.nid FROM {node} n WHERE n.type = 'blog' AND n.status = 1 ORDER BY n.nid DESC", 0, 10)); - $block["content"] .= "<div align=\"right\" id=\"blog_more\">". l(t("more"), "blog", array("title" => t("Read the latest blog entries."))) ."</div>"; + $block["content"] .= "<div class=\"more-link\">". l(t("more"), "blog", array("title" => t("Read the latest blog entries."))) ."</div>"; $block["subject"] = t("Blogs"); } return $block; |