summaryrefslogtreecommitdiff
path: root/modules/locale
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-11-25 19:26:21 +0000
committerDries Buytaert <dries@buytaert.net>2003-11-25 19:26:21 +0000
commitc0494c0a2b2d022038baeeef33ce28bd71f35be9 (patch)
tree6538160fbe5046e15534f3fad33ec0639b363759 /modules/locale
parent2df7214a09fd2c38123d7767c29ed130b5c42052 (diff)
downloadbrdo-c0494c0a2b2d022038baeeef33ce28bd71f35be9.tar.gz
brdo-c0494c0a2b2d022038baeeef33ce28bd71f35be9.tar.bz2
- Committed phase 4 of JonBob's menu system changes.
Diffstat (limited to 'modules/locale')
-rw-r--r--modules/locale/locale.module12
1 files changed, 3 insertions, 9 deletions
diff --git a/modules/locale/locale.module b/modules/locale/locale.module
index 8e54b97a4..79da2f23c 100644
--- a/modules/locale/locale.module
+++ b/modules/locale/locale.module
@@ -55,9 +55,7 @@ function locale_help($section = "admin/help#locale") {
}
function locale_help_page() {
- print theme("header");
- print locale_help();
- print theme("footer");
+ print theme("page", locale_help());
}
function locale_perm() {
@@ -300,14 +298,10 @@ function locale_admin() {
$output = locale_seek();
$output .= locale_seek_form();
}
- print theme("header");
- print $output;
- print theme("footer");
+ print theme("page", $output);
}
else {
- print theme("header");
- print message_access();
- print theme("footer");
+ print theme("page", message_access());
}
}