diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-12-09 08:56:15 -0800 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-12-09 08:56:15 -0800 |
commit | 7b29770e2b0ba28d5871d2eabdfd405437e2eae9 (patch) | |
tree | 414c3848c41a9553d25be5244aa32a9a445b86b1 | |
parent | 9cd1b120d0439ca9f9ddcc5153800960f13b82f9 (diff) | |
parent | 288430390334c29a55b8c6ef0ea8cbdf02abe580 (diff) |
Merge pull request #51 from alex-go/master
Fixed small error in SQ-usercopy
-rw-r--r-- | plugins/squirrelmail_usercopy/squirrelmail_usercopy.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/squirrelmail_usercopy/squirrelmail_usercopy.php b/plugins/squirrelmail_usercopy/squirrelmail_usercopy.php index bfa489ae5..7849f915e 100644 --- a/plugins/squirrelmail_usercopy/squirrelmail_usercopy.php +++ b/plugins/squirrelmail_usercopy/squirrelmail_usercopy.php @@ -179,7 +179,7 @@ class squirrelmail_usercopy extends rcube_plugin $rec['firstname'] = rcube_charset_convert(rtrim($sql_array['firstname']), $db_charset); $rec['surname'] = rcube_charset_convert(rtrim($sql_array['lastname']), $db_charset); $rec['email'] = rcube_charset_convert(rtrim($sql_array['email']), $db_charset); - $rec['note'] = rcube_charset_convert(rtrim($sql_array['label']), $db_charset); + $rec['notes'] = rcube_charset_convert(rtrim($sql_array['label']), $db_charset); if ($rec['name'] && $rec['email']) $this->abook[] = $rec; |