goba Fri Feb 11 07:47:14 2005 EDT
Modified files:
/phpdoc/scripts/quickref originalafter.js
Log:
Doh, I forgot to fix this, and this causes the function lookup bugs
probably...
http://cvs.php.net/diff.php/phpdoc/scripts/quickref/originalafter.js?r1=1.15&r2=1.16&ty=u
Index: phpdoc/scripts/quickref/originalafter.js
diff -u phpdoc/scripts/quickref/originalafter.js:1.15
phpdoc/scripts/quickref/originalafter.js:1.16
--- phpdoc/scripts/quickref/originalafter.js:1.15 Mon Jan 10 07:55:42 2005
+++ phpdoc/scripts/quickref/originalafter.js Fri Feb 11 07:47:12 2005
@@ -107,14 +107,13 @@
function fh_Show(what)
{
- tdv=_d.getElementById("funchelper");
- ts=tdv.style;
+ ts=funchelper.style;
if (what=="") {
if (ts.display!="none") ts.display="none";
} else {
ts.display="block";
ts.left=ElLeft(f_p)+"px";
- tdv.innerHTML=what;
+ funchelper.innerHTML=what;
}
}