From ee305ae144d074692f2737eed8e38ec32f20e98e Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 11 Jan 2004 15:05:21 +0000 Subject: Round 3 of aggregator improvements: - Added support for new tags: + Optinal feed image: tag. + Dublin core dates: , , . - Usability improvements: + On the administration page, made the feed/bundle titles link to the feeds/bundles' pages. On the feed/bundle's page, made the 'Last updated' field link to the administration page. + Moved the 'syndication' menu one level down. - Updated some content sensitive help. - Further improved themeability. - Fixed some invalid HTML. --- modules/blog.module | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'modules/blog.module') diff --git a/modules/blog.module b/modules/blog.module index f8c44b4a7..5f342a6ce 100644 --- a/modules/blog.module +++ b/modules/blog.module @@ -122,8 +122,8 @@ function blog_page_user($uid) { while ($node = db_fetch_object($result)) { $output .= node_view(node_load(array("nid" => $node->nid)), 1); } - $output .= theme("pager", NULL, variable_get("default_nodes_main", 10)); - $output .= "
". l("\"\"", "blog/feed/$account->uid", array("title" => t("View the XML version of %username's blog", array("%username" => $account->name)))) . "
"; + $output .= theme('pager', NULL, variable_get("default_nodes_main", 10)); + $output .= theme('xml_icon', url("blog/feed/$account->uid")); print theme("page", $output, $title); } @@ -138,8 +138,8 @@ function blog_page_last() { while ($node = db_fetch_object($result)) { $output .= node_view(node_load(array("nid" => $node->nid)), 1); } - $output .= theme("pager", NULL, variable_get("default_nodes_main", 10)); - $output .= "
". l("\"\"", "blog/feed", array("title" => t("Read the XML version of all blogs."))) ."
"; + $output .= theme('pager', NULL, variable_get("default_nodes_main", 10)); + $output .= theme('xml_icon', url('blog/feed')); print theme("page", $output); } -- cgit v1.2.3