summaryrefslogtreecommitdiff
path: root/program/lib/Roundcube/rcube_user.php
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2012-12-07 14:54:35 +0100
committerAleksander Machniak <alec@alec.pl>2012-12-07 14:54:35 +0100
commit7c5d4b0d4d01c66768a71e8e6138f5b637d44e4a (patch)
tree3a52ea47aa7775db5fe91a4277c7f95ec43ded29 /program/lib/Roundcube/rcube_user.php
parenta3985963f0df4fffa1a6d272c777f781ebd86d50 (diff)
Fix typo in identity data parser ('ident' item wasn't set correctly)
Diffstat (limited to 'program/lib/Roundcube/rcube_user.php')
-rw-r--r--program/lib/Roundcube/rcube_user.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_user.php b/program/lib/Roundcube/rcube_user.php
index b027506ac..f6b77f5e1 100644
--- a/program/lib/Roundcube/rcube_user.php
+++ b/program/lib/Roundcube/rcube_user.php
@@ -263,7 +263,7 @@ class rcube_user
$sql_arr['email_ascii'] = $ascii_email;
$sql_arr['email'] = $utf8_email;
- $sql_arr['ident'] = format_email_recipient($ascii_email, $ident['name']);
+ $sql_arr['ident'] = format_email_recipient($ascii_email, $sql_arr['name']);
}
$result[] = $sql_arr;