From 722aa942cbc0d58d88b46bd2d0d8dbeeb53f39ff Mon Sep 17 00:00:00 2001 From: "Paul W. Frields" Date: Sun, 18 Jul 2010 22:01:45 -0400 Subject: Fix URL target --- authfas.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authfas.module b/authfas.module index 8c3063a..1d774e8 100644 --- a/authfas.module +++ b/authfas.module @@ -190,7 +190,7 @@ function authfas_form_user_admin_role_alter(&$form, $form_state) { $newform['fasgroup'] = array( '#type' => 'textfield', '#title' => t('FAS group mapping'), - '#description' => t('Enter the name for a FAS group that maps to this role. To delete an existing mapping, clear this field. When you delete an existing mapping, users are not removed from the Drupal role. You can either delete the role entirely to remove all users from it, or remove individual users from the role by editing them directly.', array('@edit' => url('admin/user/edit'))), + '#description' => t('Enter the name for a FAS group that maps to this role. To delete an existing mapping, clear this field. When you delete an existing mapping, users are not removed from the Drupal role. You can either delete the role entirely to remove all users from it, or remove individual users from the role by editing them directly.', array('@edit' => url('admin/user/user'))), '#size' => 30, '#maxlength' => 255, '#default_value' => $fasgroup, -- cgit