diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-11-23 10:41:04 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-11-23 10:41:04 +0000 |
commit | 26735ac5dd06c064bb816bcf264fbeb44ac3b0b7 (patch) | |
tree | 7d3e61703899588cf9a3dd61788965bdcf629266 /modules/queue.module | |
parent | e4d791fe0d5a70867448c9fd5b2d03b9d69b98a0 (diff) | |
download | brdo-26735ac5dd06c064bb816bcf264fbeb44ac3b0b7.tar.gz brdo-26735ac5dd06c064bb816bcf264fbeb44ac3b0b7.tar.bz2 |
- Committed phase 3 of JonBob's menu changes. Adds an API for modules to
define titles and breadcrumbs for their pages, and updates the theme
system to display them.
Diffstat (limited to 'modules/queue.module')
-rw-r--r-- | modules/queue.module | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/queue.module b/modules/queue.module index 53fc56895..23658a180 100644 --- a/modules/queue.module +++ b/modules/queue.module @@ -116,8 +116,9 @@ function queue_overview() { } $output .= "</table>"; + drupal_set_title(t("Moderation queue")); print theme("header"); - print theme("box", t("Moderation queue"), $output); + print $output; print theme("footer"); } @@ -192,7 +193,7 @@ function queue_page() { } else { print theme("header"); - print theme("box", t("Moderation queue"), message_access()); + print message_access(); print theme("footer"); } } |