summaryrefslogtreecommitdiff
path: root/modules/queue.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-11-09 23:27:22 +0000
committerDries Buytaert <dries@buytaert.net>2003-11-09 23:27:22 +0000
commit951b553a9887df92d93ecc42e7e83ca568e26aae (patch)
treec35a2ae7f53ecbd83e6ff52b847a6c469e5a438a /modules/queue.module
parent00ee7f747b0920f2b8375b494930b19a25030a57 (diff)
downloadbrdo-951b553a9887df92d93ecc42e7e83ca568e26aae.tar.gz
brdo-951b553a9887df92d93ecc42e7e83ca568e26aae.tar.bz2
- Committed stage 2 of the theme system improvements! Patch by CodeMonkeyX.
Diffstat (limited to 'modules/queue.module')
-rw-r--r--modules/queue.module18
1 files changed, 9 insertions, 9 deletions
diff --git a/modules/queue.module b/modules/queue.module
index 92f2decb1..5de10711a 100644
--- a/modules/queue.module
+++ b/modules/queue.module
@@ -116,9 +116,9 @@ function queue_overview() {
}
$output .= "</table>";
- theme("header");
- theme("box", t("Moderation queue"), $output);
- theme("footer");
+ print theme("header");
+ print theme("box", t("Moderation queue"), $output);
+ print theme("footer");
}
function queue_view($nid) {
@@ -168,15 +168,15 @@ function queue_view($nid) {
}
}
- theme("header");
+ print theme("header");
node_view($node);
if ($output) {
- theme("box", t("Moderate"), $output);
+ print theme("box", t("Moderate"), $output);
}
if ($node->comment && variable_get("queue_show_comments", 1)) {
module_invoke("comment", "render", $node);
}
- theme("footer");
+ print theme("footer");
}
function queue_page() {
@@ -191,9 +191,9 @@ function queue_page() {
}
}
else {
- theme("header");
- theme("box", t("Moderation queue"), message_access());
- theme("footer");
+ print theme("header");
+ print theme("box", t("Moderation queue"), message_access());
+ print theme("footer");
}
}