- Fix wrong message on file upload error (#1486725)

release-0.6
alecpl 15 years ago
parent 0b7f3a8ab2
commit 87a8685fbf

@ -1,6 +1,7 @@
CHANGELOG RoundCube Webmail CHANGELOG RoundCube Webmail
=========================== ===========================
- Fix wrong message on file upload error (#1486725)
- Add support for data URI scheme [RFC2397] (#1486740) - Add support for data URI scheme [RFC2397] (#1486740)
- Added 'actionbefore', 'actionafter', 'responsebefore', 'responseafter' events - Added 'actionbefore', 'actionafter', 'responsebefore', 'responseafter' events
- Removed response.callbacks feature - Removed response.callbacks feature

@ -3103,20 +3103,20 @@ function rcube_webmail()
} }
// handle upload errors, parsing iframe content in onload // handle upload errors, parsing iframe content in onload
var fr = document.getElementsByName(frame_name)[0]; $(frame_name).bind('load', {ts:ts}, function(e) {
$(fr).bind('load', {ts:ts}, function(e) { var d, content = '';
var content = '';
try { try {
if (this.contentDocument) { if (this.contentDocument) {
var d = this.contentDocument; d = this.contentDocument;
} else if (this.contentWindow) { } else if (this.contentWindow) {
var d = this.contentWindow.document; d = this.contentWindow.document;
} }
content = d.childNodes[0].innerHTML; content = d.childNodes[0].innerHTML;
} catch (e) {} } catch (e) {}
if (!String(content).match(/add2attachment/) && (!bw.opera || (rcmail.env.uploadframe && rcmail.env.uploadframe == e.data.ts))) { if (!content.match(/add2attachment/) && (!bw.opera || (rcmail.env.uploadframe && rcmail.env.uploadframe == e.data.ts))) {
rcmail.display_message(rcmail.get_label('fileuploaderror'), 'error'); if (!content.match(/display_message/))
rcmail.display_message(rcmail.get_label('fileuploaderror'), 'error');
rcmail.remove_from_attachment_list(e.data.ts); rcmail.remove_from_attachment_list(e.data.ts);
} }
// Opera hack: handle double onload // Opera hack: handle double onload

Loading…
Cancel
Save