diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2008-01-10 21:42:59 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2008-01-10 21:42:59 +0000 |
commit | 33633c5c593f7b323a757b99600f036266b5002f (patch) | |
tree | d32292bf5efd23a1e9f5953d849ba413f8c6ed4f /modules/user/user.admin.inc | |
parent | b17cd3b613df6a2e4912c263af7cff49004ffc38 (diff) | |
download | brdo-33633c5c593f7b323a757b99600f036266b5002f.tar.gz brdo-33633c5c593f7b323a757b99600f036266b5002f.tar.bz2 |
#18954 follow up by myself: restore user role name editing
Diffstat (limited to 'modules/user/user.admin.inc')
-rw-r--r-- | modules/user/user.admin.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/user.admin.inc b/modules/user/user.admin.inc index b86872c90..bc2b2c09c 100644 --- a/modules/user/user.admin.inc +++ b/modules/user/user.admin.inc @@ -623,7 +623,7 @@ function user_admin_role() { drupal_goto('admin/user/roles'); } // Display the edit role form. - $role = db_fetch_object(db_query('SELECT * FROM {role} WHERE rid = %d', $id)); + $role = db_fetch_object(db_query('SELECT * FROM {role} WHERE rid = %d', $rid)); $form['name'] = array( '#type' => 'textfield', '#title' => t('Role name'), |