From 6979f72e374e48c8a3234a9526352ff4fc297e27 Mon Sep 17 00:00:00 2001 From: Claudio Sacerdoti Coen Date: Mon, 25 Jun 2001 09:52:36 +0000 Subject: [PATCH] "Bug" appearing under IE only fixed. --- helm/on-line/xslt/ls2html.xsl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/helm/on-line/xslt/ls2html.xsl b/helm/on-line/xslt/ls2html.xsl index 105c9ed3f..98f8fd17a 100644 --- a/helm/on-line/xslt/ls2html.xsl +++ b/helm/on-line/xslt/ls2html.xsl @@ -70,8 +70,12 @@ '&param.getterURL={$getterURL}' + '&param.target={$target}' + '&param.interfaceURL={$interfaceURL}'; + var pathname = this.pathname; + // Next if to cope with IE idiosyncrasies + if (pathname.charAt(0) != '/') + pathname = '/' + pathname; this.href= - this.protocol + '//' + this.host + this.pathname + search + this.hash;" + this.protocol + '//' + this.host + pathname + search + this.hash;" onMouseOver="window.status='{$uri}'; return true" href="apply" > -- 2.39.2