diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2006-12-20 14:26:37 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2006-12-20 14:26:37 +0000 |
| commit | ba1e3f171525849f5bb1864b289c0e65c5ea03c4 (patch) | |
| tree | 3f4a2676bb113101f3d6dc5bdf82d6ea4be7ce08 /roundcubemail/program/steps | |
| parent | 6b3b8874f2c160577099e653567212fc8015683a (diff) | |
Little fix for new string quoting
git-svn-id: https://svn.roundcube.net/trunk@421 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps')
| -rw-r--r-- | roundcubemail/program/steps/mail/upload.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roundcubemail/program/steps/mail/upload.inc b/roundcubemail/program/steps/mail/upload.inc index 50a6dba36..0d9761e44 100644 --- a/roundcubemail/program/steps/mail/upload.inc +++ b/roundcubemail/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, |
