On Tuesday, March 18, 2003, at 02:19 PM, Michael Bowe wrote:
On of my customers reported that same error to me yesterday
Looking at the html of that page, the error is being generated on one of the
simple javascript lines, however the syntax of the line looked ok to me
My customer was using IE6.0
I tried it on several computers but couldnt reproduce it
Anyone have any ideas?

Matt Simerson reported this earlier -- he left out a closing "}" in his javascript code.


Here are two patches to fix it. Ken, please make sure this gets into the next release.

--- qmailadmin-1.0.12/html/mod_user_quota.html Wed Feb 26 11:32:04 2003
+++ qmailadmin-1.0.12-tc/html/mod_user_quota.html Tue Mar 18 15:29:30 2003
@@ -11,6 +11,7 @@
document.forms[0].fsaved.disabled=true;
document.forms[0].vsubject.disabled=true;
document.forms[0].vmessage.disabled=true;
+ }
else if (txt=="forward")
{
document.forms[0].nforward.disabled=false;
--- qmailadmin-1.0.12/html/mod_user_noquota.html Wed Feb 26 11:32:04 2003
+++ qmailadmin-1.0.12-tc/html/mod_user_noquota.html Tue Mar 18 15:29:51 2003
@@ -11,6 +11,7 @@
document.forms[0].fsaved.disabled=true;
document.forms[0].vsubject.disabled=true;
document.forms[0].vmessage.disabled=true;
+ }
else if (txt=="forward")
{
document.forms[0].nforward.disabled=false;


--
Tom Collins
[EMAIL PROTECTED]




Reply via email to