diff options
Diffstat (limited to 'modules/aggregator/aggregator.module')
-rw-r--r-- | modules/aggregator/aggregator.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module index e9ff2d0a0..dd371af95 100644 --- a/modules/aggregator/aggregator.module +++ b/modules/aggregator/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; } |