summaryrefslogtreecommitdiff
path: root/modules/drupal
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/drupal
parentd03872979756371aeff787bca107db9a88d7004a (diff)
downloadbrdo-83f5d82876e6b2102c2b5839b430f1d5f9a23ec1.tar.gz
brdo-83f5d82876e6b2102c2b5839b430f1d5f9a23ec1.tar.bz2
- Everything is using theme("function") now instead of $theme->function().
Diffstat (limited to 'modules/drupal')
-rw-r--r--modules/drupal/drupal.module8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/drupal/drupal.module b/modules/drupal/drupal.module
index 5659c4455..b856aac63 100644
--- a/modules/drupal/drupal.module
+++ b/modules/drupal/drupal.module
@@ -143,10 +143,10 @@ function drupal_auth($username, $password, $server) {
}
function drupal_page() {
- global $theme;
- $theme->header();
- $theme->box("Drupal", drupal_auth_help());
- $theme->footer();
+
+ theme("header");
+ theme("box", "Drupal", drupal_auth_help());
+ theme("footer");
}
function drupal_login($arguments) {