K FLINT
03-01-1999, 06:50
Wireplay, there is an error in the java script that is in this version of UBB that has buggered the bulbs!!!
Here's a quick mod so that they reappear:
In the Ultimate.cgi file change line 614 from:
quote:
--------------------------------------------------------------------------------
expireDate.setYear(expireDate.getYear()+1);
--------------------------------------------------------------------------------
To:
quote:
--------------------------------------------------------------------------------
if (expireDate.getYear() < 100) {
expireDate.setYear (expireDate.getYear() + 1900 + 1);
} else {
expireDate.setYear(expireDate.getYear()+1);
}
-------------------------------------------------------------------------------
Once you have done this if you let us the users know, then all we have to do is go to the main page of the Bulletin Board, click refresh & the bulbs should reappear & our cookies will be updated.
K FLINT
[This message has been edited by K FLINT (edited 03-01-99).]
Here's a quick mod so that they reappear:
In the Ultimate.cgi file change line 614 from:
quote:
--------------------------------------------------------------------------------
expireDate.setYear(expireDate.getYear()+1);
--------------------------------------------------------------------------------
To:
quote:
--------------------------------------------------------------------------------
if (expireDate.getYear() < 100) {
expireDate.setYear (expireDate.getYear() + 1900 + 1);
} else {
expireDate.setYear(expireDate.getYear()+1);
}
-------------------------------------------------------------------------------
Once you have done this if you let us the users know, then all we have to do is go to the main page of the Bulletin Board, click refresh & the bulbs should reappear & our cookies will be updated.
K FLINT
[This message has been edited by K FLINT (edited 03-01-99).]