PDA

View Full Version : Wireplay - about the Bulletin Board y2k bug...


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).]

MrVista
03-01-1999, 18:52
sorted ... cheers!

Hog
03-01-1999, 19:20
Coooool <respect to Flinty> it works now.

VELVET
03-01-1999, 20:10
Wow - cool - FLINT m8 - I want you to have my babies http://www.wireplay.co.uk/ubb/smile.gif

K FLINT
03-01-1999, 22:13
http://www.wireplay.co.uk/ubb/wink.gif

K FLINT