summaryrefslogtreecommitdiff
path: root/modules/aggregator.module
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2005-12-29 04:46:40 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2005-12-29 04:46:40 +0000
commit79a193a2d29b857b1a479fe878c1acebeddbf1a8 (patch)
tree0f00e1171848a88638f8aa93efe6621590fa6409 /modules/aggregator.module
parent511089865d6378e630d10e95361b8908ef2cebec (diff)
downloadbrdo-79a193a2d29b857b1a479fe878c1acebeddbf1a8.tar.gz
brdo-79a193a2d29b857b1a479fe878c1acebeddbf1a8.tar.bz2
- #42234: Use standardized feed icon for RSS
Diffstat (limited to 'modules/aggregator.module')
-rw-r--r--modules/aggregator.module6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/aggregator.module b/modules/aggregator.module
index e9ff2d0a0..dd371af95 100644
--- a/modules/aggregator.module
+++ b/modules/aggregator.module
@@ -967,12 +967,12 @@ function _aggregator_page_list($sql, $op, $header = '') {
// arg(1) is undefined if we are at the top aggregator URL
// is there a better way to do this?
if (!arg(1)) {
- $form['xml_icon'] = array('#value' => theme('xml_icon', url('aggregator/rss')));
+ $form['feed_icon'] = array('#value' => theme('feed_icon', url('aggregator/rss')));
}
elseif (arg(1) == 'categories' && arg(2) && !arg(3)) {
- $form['xml_icon'] = array('#value' => theme('xml_icon', url('aggregator/rss/' . arg(2))));
+ $form['feed_icon'] = array('#value' => theme('feed_icon', url('aggregator/rss/' . arg(2))));
}
- $output .= $form['xml_icon']['#value'];
+ $output .= $form['feed_icon']['#value'];
return ($categorize) ? drupal_get_form('aggregator_page_list', $form) : $output;
}