diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-05-09 13:45:37 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-05-09 13:45:37 +0200 |
commit | 951c9b3abbf55ea16a5757d42af2522408b07293 (patch) | |
tree | 1858bac3ed30de54c618b96ab0e859fe6e184497 /program/steps/mail | |
parent | 71ced07735641e95bea63f67a75d6f151ef802b1 (diff) |
Fix add_contact() (#1488465)
Diffstat (limited to 'program/steps/mail')
-rw-r--r-- | program/steps/mail/func.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index aeb917bd7..854298d8b 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -1330,7 +1330,7 @@ function rcmail_address_string($input, $max=null, $linked=false, $addicon=null, if ($addicon && $_SESSION['writeable_abook']) { $address = html::span(null, $address . html::a(array( 'href' => "#add", - 'onclick' => sprintf("return %s.command('add-contact','%s',this)", JS_OBJECT_NAME, urlencode($string)), + 'onclick' => sprintf("return %s.command('add-contact','%s',this)", JS_OBJECT_NAME, $string), 'title' => rcube_label('addtoaddressbook'), 'class' => 'rcmaddcontact', ), |