summaryrefslogtreecommitdiff
path: root/plugins/acl/acl.php
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2013-01-29 08:22:01 +0100
committerAleksander Machniak <alec@alec.pl>2013-01-29 08:22:01 +0100
commitb61041e655d122139b9bf75a85b170a15eaeb48e (patch)
treef028b208642fbd0f7c929aeaf6feea318314e039 /plugins/acl/acl.php
parent737b629c6f947b956cacf188c2f6d6a410c36f3a (diff)
Fix "empty" ACL entry when there's "User, " in user input field
Diffstat (limited to 'plugins/acl/acl.php')
-rw-r--r--plugins/acl/acl.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/acl/acl.php b/plugins/acl/acl.php
index 5ae9e4e0a..eb8433a27 100644
--- a/plugins/acl/acl.php
+++ b/plugins/acl/acl.php
@@ -441,7 +441,7 @@ class acl extends rcube_plugin
if (!empty($this->specials) && in_array($user, $this->specials)) {
$username = $this->gettext($user);
}
- else {
+ else if (!empty($user)) {
if (!strpos($user, '@') && ($realm = $this->get_realm())) {
$user .= '@' . rcube_utils::idn_to_ascii(preg_replace('/^@/', '', $realm));
}