From 83f5d82876e6b2102c2b5839b430f1d5f9a23ec1 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sat, 15 Feb 2003 11:39:56 +0000 Subject: - Everything is using theme("function") now instead of $theme->function(). --- modules/drupal/drupal.module | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'modules/drupal/drupal.module') 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) { -- cgit v1.2.3