From 1b291a2917a1c18194c54fce8bf0fd895db98019 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Thu, 18 May 2006 14:58:57 +0000 Subject: - Patch #18260 by Ber, m3averck et al: allow overriding of links returned by modules --- modules/aggregator/aggregator.module | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) (limited to 'modules/aggregator/aggregator.module') diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module index 21ea91e06..da6b17fe7 100644 --- a/modules/aggregator/aggregator.module +++ b/modules/aggregator/aggregator.module @@ -1145,7 +1145,13 @@ function aggregator_page_sources() { } } $output .= theme('item_list', $list); - $output .= '\n"; + + $link['sources'] = array( + '#title' => t('more'), + '#href' => 'aggregator/sources/'. $feed->fid + ); + + $output .= '\n"; } $output .= theme('xml_icon', url('aggregator/opml')); $output .= ''; @@ -1245,8 +1251,15 @@ function aggregator_page_categories() { } $output .= theme('item_list', $list); } - $output .= '\n"; + + $link['categories'] = array( + '#title' => t('more'), + '#href' => 'aggregator/categories/'. $category->cid + ); + + $output .= '\n"; } + $output .= ''; return $output; -- cgit v1.2.3