summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul W. Frields <stickster@gmail.com>2010-07-10 16:18:17 -0400
committerPaul W. Frields <stickster@gmail.com>2010-07-10 16:18:17 -0400
commit00292fc29bb8ba84c43c12ebb4de02f01e565910 (patch)
tree7ff8d4ad68b92577cbf0e7d4f4b83132bb93bf6e
parente59cea48b71aa52b6965d1e7a1aa1f1325088fde (diff)
downloaddrupal-authfas-6x-00292fc29bb8ba84c43c12ebb4de02f01e565910.tar.gz
drupal-authfas-6x-00292fc29bb8ba84c43c12ebb4de02f01e565910.tar.xz
drupal-authfas-6x-00292fc29bb8ba84c43c12ebb4de02f01e565910.zip
Fix key types for menu
-rw-r--r--authfas.module12
1 files changed, 6 insertions, 6 deletions
diff --git a/authfas.module b/authfas.module
index b8421c7..f11e8da 100644
--- a/authfas.module
+++ b/authfas.module
@@ -87,12 +87,12 @@ function authfas_menu() {
$items = array();
$items['admin/settings/authfas'] = array(
- '#title' => 'AuthFAS module settings',
- '#description' => 'Settings for authenticating to a FAS instance',
- '#page_callback' => 'drupal_get_form',
- '#page_arguments' => array('authfas_admin'),
- '#access_arguments' => array('access administration pages'),
- '#type' => MENU_NORMAL_ITEM,
+ 'title' => 'AuthFAS module settings',
+ 'description' => 'Settings for authenticating to a FAS instance',
+ 'page callback' => 'drupal_get_form',
+ 'page arguments' => array('authfas_admin'),
+ 'access arguments' => array('access administration pages'),
+ 'type' => MENU_NORMAL_ITEM,
);
return $items;