From 7231c88a326f92bdc2b1579ac6afb8f7f568170b Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Wed, 21 Apr 2004 13:56:38 +0000 Subject: - Added support for 403 handling. Patch by JonBob. As a side benefit, administrators will be able to define a custom 403 page, just as they can define 404 pages now. This needs to be documented in the "Changes since / migrating to ..." pages. --- modules/drupal/drupal.module | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'modules/drupal/drupal.module') diff --git a/modules/drupal/drupal.module b/modules/drupal/drupal.module index b6392a501..084fb96d1 100644 --- a/modules/drupal/drupal.module +++ b/modules/drupal/drupal.module @@ -160,9 +160,12 @@ function drupal_auth($username, $password, $server) { return $login; } +/** + * Implementation of hook_link(). + */ function drupal_link($type) { - if ($type == "system") { - menu("drupal", t("Drupal"), "drupal_page", 0, MENU_HIDE); + if ($type == 'system') { + menu('drupal', t('Drupal'), 'drupal_page', 0, MENU_HIDE); } } -- cgit v1.2.3