summaryrefslogtreecommitdiff
path: root/modules/taxonomy/taxonomy.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-02-15 11:39:56 +0000
committerDries Buytaert <dries@buytaert.net>2003-02-15 11:39:56 +0000
commit83f5d82876e6b2102c2b5839b430f1d5f9a23ec1 (patch)
tree01fdcbf42575cd001bfd87af07b9ef1bd1ea8453 /modules/taxonomy/taxonomy.module
parentd03872979756371aeff787bca107db9a88d7004a (diff)
downloadbrdo-83f5d82876e6b2102c2b5839b430f1d5f9a23ec1.tar.gz
brdo-83f5d82876e6b2102c2b5839b430f1d5f9a23ec1.tar.bz2
- Everything is using theme("function") now instead of $theme->function().
Diffstat (limited to 'modules/taxonomy/taxonomy.module')
-rw-r--r--modules/taxonomy/taxonomy.module8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module
index 01447d37a..dd67863cb 100644
--- a/modules/taxonomy/taxonomy.module
+++ b/modules/taxonomy/taxonomy.module
@@ -683,7 +683,7 @@ function taxonomy_render_nodes($result) {
}
function taxonomy_page() {
- global $theme;
+
// taxonomy querystring always parsed here
// TODO: support term *names* in URL (e.g. taxonomy/view/or/milk,beer,red+wine)
@@ -696,9 +696,9 @@ function taxonomy_page() {
taxonomy_feed($taxonomy);
break;
default:
- $theme->header();
+ theme("header");
taxonomy_render_nodes(taxonomy_select_nodes($taxonomy));
- $theme->footer();
+ theme("footer");
break;
}
}
@@ -708,7 +708,7 @@ function taxonomy_page() {
*/
function taxonomy_admin() {
- global $op, $edit, $theme;
+ global $op, $edit;
if (user_access("administer taxonomy")) {
if (empty($op)) {