diff options
author | thomascube <thomas@roundcube.net> | 2009-05-20 13:12:20 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2009-05-20 13:12:20 +0000 |
commit | 0772a7dee2f4af60e5977b5f133f46d1b24b3eae (patch) | |
tree | 9f0542997e8d08e66bcd34c8d5915cd5edaa46c1 /program/include | |
parent | dabad7b1f6df0df0a278e906e7f67af6fdf30144 (diff) |
Fix invalid object reference
Diffstat (limited to 'program/include')
-rw-r--r-- | program/include/rcube_user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_user.php b/program/include/rcube_user.php index a879a0718..fd256607b 100644 --- a/program/include/rcube_user.php +++ b/program/include/rcube_user.php @@ -400,7 +400,7 @@ class rcube_user // create new identities records $standard = 1; foreach ($email_list as $email) { - $plugin = $RCMAIL->plugins->exec_hook('create_identity', array('record' => array( + $plugin = $rcmail->plugins->exec_hook('create_identity', array('record' => array( 'login' => true, 'user_id' => $user_id, 'name' => strip_newlines($user_name), |