PDA

View Full Version : Bug in external.php


Marco
Sat 21st Jun '03, 11:24am
Line 122 - 129:


function thread(threadid, title, poster, userid, threaddate, threadtime)
{
this.threadid = threadid;
this.title = title;
this.poster = poster;
this.threaddate = threaddate;
this.threadtime = threadtime;
}

Should be:


function thread(threadid, title, poster, threaddate, threadtime)
{
this.threadid = threadid;
this.title = title;
this.poster = poster;
this.threaddate = threaddate;
this.threadtime = threadtime;
}

Unless ofcourse you still do want to include the userid (would be cool, that way people can link to a user's profile), in which case it would be, umm... more complex... :p

Steve Machol
Sat 21st Jun '03, 11:58am
Moved to Bugs for a Dev to check.