From 680dc960cb8d7999ac6bd95f7e977b03e40f0c63 Mon Sep 17 00:00:00 2001 From: "Paul W. Frields" Date: Sat, 10 Jul 2010 15:04:27 -0400 Subject: Add dummy form_alter to see if it works --- authfas.module | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'authfas.module') diff --git a/authfas.module b/authfas.module index 1cfb664..ca15087 100644 --- a/authfas.module +++ b/authfas.module @@ -106,3 +106,9 @@ function authfas_menu() { // http://drupal.org/node/206761 return TRUE; } + +function user_admin_role_form_alter(&$form, $form_state, $form_id) { + if ($form_id == "user_admin_role") { + form['foo'] = array('#title' => t('FOO'),); + } +} -- cgit