summaryrefslogtreecommitdiff
path: root/program/js
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2013-01-15 18:18:11 +0100
committerAleksander Machniak <alec@alec.pl>2013-01-15 18:18:11 +0100
commitb5b76d2ccb8e28183c078d242e1530508b2686ae (patch)
treed3c2dacc05ae4a194e9cb00c8e673a6cb90fc261 /program/js
parent174257d677c49eb613b7623d1fc83d4658b50b9a (diff)
Make sure mimetypes is an array not object in a better way
Diffstat (limited to 'program/js')
-rw-r--r--program/js/app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js
index 686868697..71976096c 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -820,7 +820,7 @@ function rcube_webmail()
var qstring = '_mbox='+urlencode(this.env.mailbox)+'&_uid='+this.env.uid+'&_part='+props.part;
// open attachment in frame if it's of a supported mimetype
- if (this.env.uid && props.mimetype && this.env.mimetypes && $.inArray(props.mimetype, $.map(this.env.mimetypes, function(v,k){ return v })) >= 0) {
+ if (this.env.uid && props.mimetype && this.env.mimetypes && $.inArray(props.mimetype, this.env.mimetypes) >= 0) {
if (props.mimetype == 'text/html')
qstring += '&_safe=1';
this.attachment_win = window.open(this.env.comm_path+'&_action=get&'+qstring+'&_frame=1', 'rcubemailattachment');