diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-03-13 11:33:28 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-03-13 11:33:28 +0000 |
| commit | cadd4ffa034ebe569ff7290393171f0d3c1f6116 (patch) | |
| tree | b9369e705010cef99a33b0d5dc0ab069237ae05f /plugins/acl/acl.php | |
| parent | be8b5c4c9d6c10aa5073c2296b625965fbffe1a7 (diff) | |
- Larry skin for ACL plugin
git-svn-id: https://svn.roundcube.net/trunk@6002 208e9e7b-5314-0410-a742-e7e81cd9613c
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; |
