diff options
Diffstat (limited to 'modules/drupal')
-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) { |