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

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

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

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

Loading…
Cancel
Save