diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-02-15 11:39:56 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-02-15 11:39:56 +0000 |
commit | 83f5d82876e6b2102c2b5839b430f1d5f9a23ec1 (patch) | |
tree | 01fdcbf42575cd001bfd87af07b9ef1bd1ea8453 /modules/drupal/drupal.module | |
parent | d03872979756371aeff787bca107db9a88d7004a (diff) | |
download | brdo-83f5d82876e6b2102c2b5839b430f1d5f9a23ec1.tar.gz brdo-83f5d82876e6b2102c2b5839b430f1d5f9a23ec1.tar.bz2 |
- Everything is using theme("function") now instead of $theme->function().
Diffstat (limited to 'modules/drupal/drupal.module')
-rw-r--r-- | modules/drupal/drupal.module | 8 |
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) { |