diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-03-17 18:30:14 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-03-17 18:30:14 +0000 |
commit | 4b635f6d0a21e9a1358a6f9540ef72a55682738b (patch) | |
tree | 2b789c7c25f3670f676c8e029249582497e3c060 /modules/aggregator | |
parent | f6929dcca0870e6d38654a126fe4f6c422cd9936 (diff) | |
download | brdo-4b635f6d0a21e9a1358a6f9540ef72a55682738b.tar.gz brdo-4b635f6d0a21e9a1358a6f9540ef72a55682738b.tar.bz2 |
- Patch #128081 by Eaton: remove #base, paving the path for a simpler form API.
Diffstat (limited to 'modules/aggregator')
-rw-r--r-- | modules/aggregator/aggregator.module | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module index 9601203ac..1569db535 100644 --- a/modules/aggregator/aggregator.module +++ b/modules/aggregator/aggregator.module @@ -1052,7 +1052,9 @@ function aggregator_page_category() { } function aggregator_page_list($sql, $header, $categorize) { - $form['#base'] = 'aggregator_page_list'; + $form['#submit']['aggregator_page_list_submit'] = array(); + $form['#validate']['aggregator_page_list_validate'] = array(); + $form['#theme'] = 'aggregator_page_list'; $form['header'] = array('#value' => $header); $result = pager_query($sql, 20); $categories = array(); |