diff options
Diffstat (limited to 'plugins/acl/acl.php')
| -rw-r--r-- | plugins/acl/acl.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/acl/acl.php b/plugins/acl/acl.php index dcc249421..ab981ab89 100644 --- a/plugins/acl/acl.php +++ b/plugins/acl/acl.php @@ -7,7 +7,7 @@ * @author Aleksander Machniak <alec@alec.pl> * * - * Copyright (C) 2011, Kolab Systems AG + * Copyright (C) 2011-2012, Kolab Systems AG * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 @@ -388,7 +388,8 @@ class acl extends rcube_plugin // Create table header $table->add_header('user', $this->gettext('identifier')); foreach (array_keys($items) as $key) { - $table->add_header('acl'.$key, $this->gettext('shortacl'.$key)); + $label = $this->gettext('shortacl'.$key); + $table->add_header(array('class' => 'acl'.$key, 'title' => $label), $label); } $i = 1; |
