From 00292fc29bb8ba84c43c12ebb4de02f01e565910 Mon Sep 17 00:00:00 2001 From: "Paul W. Frields" Date: Sat, 10 Jul 2010 16:18:17 -0400 Subject: Fix key types for menu --- authfas.module | 12 ++++++------ 1 file 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; -- cgit