diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-10-25 15:32:56 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-10-25 15:32:56 +0000 |
commit | 1cf05b0019dbacb1d92297fb334369b23f253834 (patch) | |
tree | 97bb51cfe8bc079c68fbeb347f033893861750f8 /modules/aggregator/aggregator.module | |
parent | 5ae55b80441adcd6a97ec2c7486dd45b4c9e0420 (diff) | |
download | brdo-1cf05b0019dbacb1d92297fb334369b23f253834.tar.gz brdo-1cf05b0019dbacb1d92297fb334369b23f253834.tar.bz2 |
- Patch #89196 by catch, keith, earnie, webchick et al: string massaging.
Diffstat (limited to 'modules/aggregator/aggregator.module')
-rw-r--r-- | modules/aggregator/aggregator.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module index ea59011e4..30fdfd590 100644 --- a/modules/aggregator/aggregator.module +++ b/modules/aggregator/aggregator.module @@ -321,7 +321,7 @@ function aggregator_block($op = 'list', $delta = 0, $edit = array()) { if ($feed = db_fetch_object(db_query('SELECT fid, title, block FROM {aggregator_feed} WHERE fid = %d', $id))) { $block['subject'] = check_plain($feed->title); $result = db_query_range('SELECT * FROM {aggregator_item} WHERE fid = %d ORDER BY timestamp DESC, iid DESC', $feed->fid, 0, $feed->block); - $read_more = theme('more_link', url('aggregator/sources/'. $feed->fid), t("View this feed's recent news.")); + $read_more = theme('more_link', url('aggregator/sources/'. $feed->fid), t("View this feed's recent news.")); } break; |