diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-10-17 19:15:27 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-10-17 19:15:27 +0000 |
commit | a856f813d7833211fc393b26218495bd634ea1ae (patch) | |
tree | e70df27504c5ba200e8d6855ada37f87d790b8cf | |
parent | 64a24732f71baec2621c57e108beefe720358549 (diff) | |
download | brdo-a856f813d7833211fc393b26218495bd634ea1ae.tar.gz brdo-a856f813d7833211fc393b26218495bd634ea1ae.tar.bz2 |
- Patch #89424 by sandhurs: correct function definition of aggregator_block().
-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 ff6088e7c..93129f6dd 100644 --- a/modules/aggregator/aggregator.module +++ b/modules/aggregator/aggregator.module @@ -257,7 +257,7 @@ function aggregator_cron() { * * Generates blocks for the latest news items in each category and feed. */ -function aggregator_block($op, $delta = 0, $edit = array()) { +function aggregator_block($op = 'list', $delta = 0, $edit = array()) { if (user_access('access news feeds')) { if ($op == 'list') { $result = db_query('SELECT cid, title FROM {aggregator_category} ORDER BY title'); |