summaryrefslogtreecommitdiff
path: root/plugins/acl/acl.php
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2014-06-10 14:40:22 +0200
committerAleksander Machniak <alec@alec.pl>2014-06-10 14:40:22 +0200
commit62c45161c4efd101b940134b60bb73881746e5f5 (patch)
tree116b59d64be9d11a9589f06a721aca635242f241 /plugins/acl/acl.php
parente4c179975219530d22e330ef7129a8eb5fa286e9 (diff)
ACL: Improved UI accessibility
Diffstat (limited to 'plugins/acl/acl.php')
-rw-r--r--plugins/acl/acl.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/acl/acl.php b/plugins/acl/acl.php
index d7e50f978..95d4eda62 100644
--- a/plugins/acl/acl.php
+++ b/plugins/acl/acl.php
@@ -286,7 +286,7 @@ class acl extends rcube_plugin
$textfield = new html_inputfield($attrib);
- $fields['user'] = html::label(array('for' => 'iduser'), $this->gettext('username'))
+ $fields['user'] = html::label(array('for' => $attrib['id']), $this->gettext('username'))
. ' ' . $textfield->show();
// Add special entries
@@ -401,7 +401,7 @@ class acl extends rcube_plugin
}
$table->add_row(array('id' => 'rcmrow'.$userid));
- $table->add('user', rcube::Q($user));
+ $table->add('user', html::a(array('id' => 'rcmlinkrow'.$userid), rcube::Q($user)));
foreach ($items as $key => $right) {
$in = $this->acl_compare($userrights, $right);