From 4c3d5793a964c6f1deba985f427ce4c655342119 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Chapeaux?= Date: Thu, 12 Jul 2001 18:11:22 +0000 Subject: [PATCH] Fixed bug #440609 (Javascript error on left frame (IE4.0)) --- left.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/left.js b/left.js index 86f09e1cf..ff895d565 100644 --- a/left.js +++ b/left.js @@ -179,7 +179,7 @@ function expandBase(el, unexpand) } // end of the DOM case else if (isIE4) { var whichEl = document.all(el + 'Child'); - var whichIm = document.images.item(el + 'Child'); + var whichIm = document.images.item(el + 'Img'); if (whichEl.style.display == 'none') { whichEl.style.display = 'block'; whichIm.src = imgOpened.src;