From 0f6e9f0bf692ae87be460eb3553e3f55349d725b Mon Sep 17 00:00:00 2001 From: Thomas Bruederli Date: Wed, 14 Nov 2012 16:18:27 +0100 Subject: Avoid errors with non-string objects --- program/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'program') diff --git a/program/js/app.js b/program/js/app.js index 1b4383480..1891977a7 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -508,7 +508,7 @@ function rcube_webmail() return false; // let the browser handle this click (shift/ctrl usually opens the link in a new window/tab) - if ((obj && obj.href && obj.href.indexOf(location.href) < 0) && rcube_event.get_modifier(event)) { + if ((obj && obj.href && String(obj.href).indexOf(location.href) < 0) && rcube_event.get_modifier(event)) { return true; } -- cgit v1.2.3