From f91a4990461d44f12755628f732b3b25544b96cc Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Wed, 20 Dec 2006 09:26:37 -0500
Subject: [PATCH] Little fix for new string quoting

---
 program/steps/mail/upload.inc |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/program/steps/mail/upload.inc b/program/steps/mail/upload.inc
index 50a6dba..0d9761e 100644
--- a/program/steps/mail/upload.inc
+++ b/program/steps/mail/upload.inc
@@ -56,9 +56,9 @@
     $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,

--
Gitblit v1.9.1