summaryrefslogtreecommitdiff
path: root/modules/aggregator.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-04-24 16:34:36 +0000
committerDries Buytaert <dries@buytaert.net>2005-04-24 16:34:36 +0000
commita76a1e1f3f5b641663ef3d00a752ec1cbd1d4ee9 (patch)
tree77a2538001468623dc122943f019daeb6fce9be1 /modules/aggregator.module
parent79a5700c57e8ed86b4aab66022a448df978d2e3f (diff)
downloadbrdo-a76a1e1f3f5b641663ef3d00a752ec1cbd1d4ee9.tar.gz
brdo-a76a1e1f3f5b641663ef3d00a752ec1cbd1d4ee9.tar.bz2
- Patch 20910 by chx: centralize print theme page.
Diffstat (limited to 'modules/aggregator.module')
-rw-r--r--modules/aggregator.module14
1 files changed, 7 insertions, 7 deletions
diff --git a/modules/aggregator.module b/modules/aggregator.module
index 0d7601db3..d5b08456c 100644
--- a/modules/aggregator.module
+++ b/modules/aggregator.module
@@ -762,7 +762,7 @@ function aggregator_edit() {
$output = aggregator_form_feed(aggregator_get_feed(arg(2)));
}
- print theme('page', $output);
+ return $output;
}
@@ -792,7 +792,7 @@ function aggregator_admin_edit_category($category = 0) {
$output = aggregator_form_category();
}
}
- print theme('page', $output);
+ return $output;
}
/**
@@ -822,7 +822,7 @@ function aggregator_admin_edit_feed($feed = 0) {
$output = aggregator_form_feed();
}
}
- print theme('page', $output);
+ return $output;
}
/**
@@ -845,7 +845,7 @@ function aggregator_admin_refresh_feed($feed) {
* Menu callback; displays the aggregator administration page.
*/
function aggregator_admin_overview() {
- print theme('page', aggregator_view());
+ return aggregator_view();
}
/**
@@ -946,7 +946,7 @@ function _aggregator_page_list($sql, $op, $header = '') {
$output .= $pager;
}
- print theme('page', $output);
+ return $output;
}
/**
@@ -971,7 +971,7 @@ function aggregator_page_sources() {
}
$output .= theme('xml_icon', url('aggregator/opml'));
$output .= '</div>';
- print theme('page', $output);
+ return $output;
}
/**
@@ -1020,7 +1020,7 @@ function aggregator_page_categories() {
}
$output .= '</div>';
- print theme('page', $output);
+ return $output;
}
/**