summaryrefslogtreecommitdiff
path: root/roundcubemail
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-04-25 06:33:29 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-04-25 06:33:29 +0000
commitdc97e69bc4b6427daeb8127f3e6967027ddae5d0 (patch)
treea61992393ee3495c5d701fc0976f7e34f6edaf95 /roundcubemail
parent8acde21150cf668041969646eef6eddb1bf57a02 (diff)
- Fix ID command arguments (must be of type nstring)
git-svn-id: https://svn.roundcube.net/trunk@4691 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail')
-rw-r--r--roundcubemail/program/include/rcube_imap_generic.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/include/rcube_imap_generic.php b/roundcubemail/program/include/rcube_imap_generic.php
index 51c7c2f4e..a455258ce 100644
--- a/roundcubemail/program/include/rcube_imap_generic.php
+++ b/roundcubemail/program/include/rcube_imap_generic.php
@@ -1203,8 +1203,8 @@ class rcube_imap_generic
{
if (is_array($items) && !empty($items)) {
foreach ($items as $key => $value) {
- $args[] = $this->escape($key);
- $args[] = $this->escape($value);
+ $args[] = $this->escape($key, true);
+ $args[] = $this->escape($value, true);
}
}