diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-05-21 23:07:16 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-05-21 23:07:16 +0000 |
commit | 4bc255ba792db435e2d487f113ca2a638ed63fea (patch) | |
tree | 0ca88b698215d5866b5643ad57add73b4410d64a /modules/aggregator | |
parent | 02c8592759c5b33d3d94fe6a515f10af4317dd5c (diff) | |
download | brdo-4bc255ba792db435e2d487f113ca2a638ed63fea.tar.gz brdo-4bc255ba792db435e2d487f113ca2a638ed63fea.tar.bz2 |
Roll-back of #310467: Breaks installer requirements check and update.php.
Diffstat (limited to 'modules/aggregator')
-rw-r--r-- | modules/aggregator/aggregator.module | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module index 09c5f8a4e..8b38db796 100644 --- a/modules/aggregator/aggregator.module +++ b/modules/aggregator/aggregator.module @@ -36,13 +36,16 @@ function aggregator_theme() { return array( 'aggregator_wrapper' => array( 'arguments' => array('content' => NULL), + 'file' => 'aggregator.pages.inc', 'template' => 'aggregator-wrapper', ), 'aggregator_categorize_items' => array( 'arguments' => array('form' => NULL), + 'file' => 'aggregator.pages.inc', ), 'aggregator_feed_source' => array( 'arguments' => array('feed' => NULL), + 'file' => 'aggregator.pages.inc', 'template' => 'aggregator-feed-source', ), 'aggregator_block_item' => array( @@ -50,21 +53,26 @@ function aggregator_theme() { ), 'aggregator_summary_items' => array( 'arguments' => array('summary_items' => NULL, 'source' => NULL), + 'file' => 'aggregator.pages.inc', 'template' => 'aggregator-summary-items', ), 'aggregator_summary_item' => array( 'arguments' => array('item' => NULL), + 'file' => 'aggregator.pages.inc', 'template' => 'aggregator-summary-item', ), 'aggregator_item' => array( 'arguments' => array('item' => NULL), + 'file' => 'aggregator.pages.inc', 'template' => 'aggregator-item', ), 'aggregator_page_opml' => array( 'arguments' => array('feeds' => NULL), + 'file' => 'aggregator.pages.inc', ), 'aggregator_page_rss' => array( 'arguments' => array('feeds' => NULL, 'category' => NULL), + 'file' => 'aggregator.pages.inc', ), ); } |