diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-09-22 17:00:53 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-09-22 17:00:53 +0000 |
| commit | 47b10335870d9be3d45401a9361f7b1636de16ac (patch) | |
| tree | f15aba1f2f0c4dd5ad19e4dc5b1a2be11ee8d20c /plugins/squirrelmail_usercopy/squirrelmail_usercopy.php | |
| parent | 79cc46162dae15d047d6afcd82afa080c7f59d18 (diff) | |
- squirrelmail_usercopy: Fix reply-to handling (#1487008)
git-svn-id: https://svn.roundcube.net/trunk@3985 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'plugins/squirrelmail_usercopy/squirrelmail_usercopy.php')
| -rw-r--r-- | plugins/squirrelmail_usercopy/squirrelmail_usercopy.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/squirrelmail_usercopy/squirrelmail_usercopy.php b/plugins/squirrelmail_usercopy/squirrelmail_usercopy.php index cebc5ac64..990c79c14 100644 --- a/plugins/squirrelmail_usercopy/squirrelmail_usercopy.php +++ b/plugins/squirrelmail_usercopy/squirrelmail_usercopy.php @@ -3,7 +3,7 @@ /** * Copy a new users identity and settings from a nearby Squirrelmail installation * - * @version 1.3 + * @version 1.4 * @author Thomas Bruederli, Johannes Hessellund, pommi, Thomas Lueder */ class squirrelmail_usercopy extends rcube_plugin @@ -44,8 +44,8 @@ class squirrelmail_usercopy extends rcube_plugin $p['record']['email'] = $this->prefs['email_address']; if ($this->prefs['___signature___']) $p['record']['signature'] = $this->prefs['___signature___']; - if ($this->prefs['reply-to']) - $p['record']['reply-to'] = $this->prefs['reply-to']; + if ($this->prefs['reply_to']) + $p['record']['reply-to'] = $this->prefs['reply_to']; if (($this->identities_level == 0 || $this->identities_level == 1) && isset($this->prefs['identities']) && $this->prefs['identities'] > 1) { for ($i=1; $i < $this->prefs['identities']; $i++) { unset($ident_data); |
