diff options
author | jeff <jeff> | 2010-01-08 16:05:04 +0000 |
---|---|---|
committer | jeff <jeff> | 2010-01-08 16:05:04 +0000 |
commit | 43e42a04ae37ca7a84c05d9ff8b94d9f8cde6dcf (patch) | |
tree | de3a12b93ad38d24bc15511d87e65ff5a6d3b9cd /httemplate/elements/xmlhttp.html | |
parent | 20b563c398c5c9264a998d31ae0d3d95454d526e (diff) |
add a logout link (RT 1330 & 5518)
Diffstat (limited to 'httemplate/elements/xmlhttp.html')
-rw-r--r-- | httemplate/elements/xmlhttp.html | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/httemplate/elements/xmlhttp.html b/httemplate/elements/xmlhttp.html index d0c799095..2df3c42c9 100644 --- a/httemplate/elements/xmlhttp.html +++ b/httemplate/elements/xmlhttp.html @@ -14,26 +14,9 @@ Example: ); </%doc> +<% include( '/elements/rs_init_object.html' ) %> <SCRIPT TYPE="text/javascript"> - function rs_init_object() { - var A; - try { - A=new ActiveXObject("Msxml2.XMLHTTP"); - } catch (e) { - try { - A=new ActiveXObject("Microsoft.XMLHTTP"); - } catch (oc) { - A=null; - } - } - if(!A && typeof XMLHttpRequest != "undefined") - A = new XMLHttpRequest(); - if (!A) - alert("Can't create XMLHttpRequest object"); - return A; - - } % foreach my $func ( @{$opt{'subs'}} ) { % % my $furl = $url; |