summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul W. Frields <stickster@gmail.com>2010-07-18 22:01:45 -0400
committerPaul W. Frields <stickster@gmail.com>2010-07-18 22:01:45 -0400
commit722aa942cbc0d58d88b46bd2d0d8dbeeb53f39ff (patch)
tree86e853ed58545e21fa53cc747117244f05b7f31f
parent9af1278fe2eab0f82362cb6414a60d8774804e14 (diff)
downloaddrupal-authfas-6x-722aa942cbc0d58d88b46bd2d0d8dbeeb53f39ff.tar.gz
drupal-authfas-6x-722aa942cbc0d58d88b46bd2d0d8dbeeb53f39ff.tar.xz
drupal-authfas-6x-722aa942cbc0d58d88b46bd2d0d8dbeeb53f39ff.zip
Fix URL target
-rw-r--r--authfas.module2
1 files changed, 1 insertions, 1 deletions
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 <a href="@edit">editing them directly</a>.', 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 <a href="@edit">editing them directly</a>.', array('@edit' => url('admin/user/user'))),
'#size' => 30,
'#maxlength' => 255,
'#default_value' => $fasgroup,