summaryrefslogtreecommitdiff
path: root/modules/drupal
diff options
context:
space:
mode:
Diffstat (limited to 'modules/drupal')
-rw-r--r--modules/drupal/drupal.module7
1 files changed, 5 insertions, 2 deletions
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);
}
}