summaryrefslogtreecommitdiff
path: root/program/steps/mail/upload.inc
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2006-12-20 14:26:37 +0000
committerthomascube <thomas@roundcube.net>2006-12-20 14:26:37 +0000
commitf91a4990461d44f12755628f732b3b25544b96cc (patch)
treec962106c7455a3f30795eae9ae458dcb51e419ae /program/steps/mail/upload.inc
parentb66d40776c763b0b63525b78406893ef52d42c9d (diff)
Little fix for new string quoting
Diffstat (limited to 'program/steps/mail/upload.inc')
-rw-r--r--program/steps/mail/upload.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/program/steps/mail/upload.inc b/program/steps/mail/upload.inc
index 50a6dba36..0d9761e44 100644
--- a/program/steps/mail/upload.inc
+++ b/program/steps/mail/upload.inc
@@ -56,9 +56,9 @@ foreach ($_FILES['_attachments']['tmp_name'] as $i => $filepath)
$content = sprintf('<a href="#delete" onclick="return %s.command(\\\'remove-attachment\\\', \\\'rcmfile%d\\\', this)" title="%s">%s</a>%s',
$JS_OBJECT_NAME,
$id,
- JQ(Q(rcube_label('delete'))),
- JQ($button),
- JQ(Q($_FILES['_attachments']['name'][$i])));
+ Q(rcube_label('delete')),
+ $button,
+ Q($_FILES['_attachments']['name'][$i]));
$response .= sprintf('parent.%s.add2attachment_list(\'rcmfile%d\',\'%s\');',
$JS_OBJECT_NAME,