diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-12-29 04:46:40 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-12-29 04:46:40 +0000 |
commit | 79a193a2d29b857b1a479fe878c1acebeddbf1a8 (patch) | |
tree | 0f00e1171848a88638f8aa93efe6621590fa6409 /modules/blog/blog.module | |
parent | 511089865d6378e630d10e95361b8908ef2cebec (diff) | |
download | brdo-79a193a2d29b857b1a479fe878c1acebeddbf1a8.tar.gz brdo-79a193a2d29b857b1a479fe878c1acebeddbf1a8.tar.bz2 |
- #42234: Use standardized feed icon for RSS
Diffstat (limited to 'modules/blog/blog.module')
-rw-r--r-- | modules/blog/blog.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module index 7215eb135..8ca451846 100644 --- a/modules/blog/blog.module +++ b/modules/blog/blog.module @@ -159,7 +159,7 @@ function blog_page_user($uid) { $output .= node_view(node_load($node->nid), 1); } $output .= theme('pager', NULL, variable_get('default_nodes_main', 10)); - $output .= theme('xml_icon', url("blog/$account->uid/feed")); + $output .= theme('feed_icon', url("blog/$account->uid/feed")); drupal_add_link(array('rel' => 'alternate', 'type' => 'application/rss+xml', @@ -186,7 +186,7 @@ function blog_page_last() { $output .= node_view(node_load($node->nid), 1); } $output .= theme('pager', NULL, variable_get('default_nodes_main', 10)); - $output .= theme('xml_icon', url('blog/feed')); + $output .= theme('feed_icon', url('blog/feed')); drupal_add_link(array('rel' => 'alternate', 'type' => 'application/rss+xml', |