From 3866b046f84bf0e03f3cf3328757d237e4c589ba Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 27 Nov 2005 20:29:44 +0100 Subject: [PATCH] api: openExternalUrl(); more checks in all_counters_callback --- functions.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/functions.js b/functions.js index d3886437b..3aef7befa 100644 --- a/functions.js +++ b/functions.js @@ -343,7 +343,7 @@ if (!xmlhttp_rpc && typeof XMLHttpRequest!='undefined') { function all_counters_callback() { if (xmlhttp_rpc.readyState == 4) { try { - if (!xmlhttp_rpc.responseXML) { + if (!xmlhttp_rpc.responseXML || !xmlhttp_rpc.responseXML.firstChild) { notify("[all_counters_callback] backend did not return valid XML"); return; } @@ -541,4 +541,7 @@ function toggleSelectRow(sender) { } } +function openExternalUrl(url) { + var w = window.open(url); +}