Club409

The best damn waste of time!

Guess who

Shawn
Total posts: 1367
I apparently missed the earlier posts that started this thread. Is there any way to repost those?
Oscar
Total posts: 1323
there never were any earlier posts......
mwinter
Total posts: 4328
there were he just deleted them.

MAJOR ADMIN EDIT: actually he didnt' delete them; some crappy MySQL mishap caused his user account to be initialized with an avatarId value of "0" which is undefined (newbies are supposed to have an avatarId of "1" which is the default thing you see now). whenever the post grabbing system tried to print out what he had said it was searching the database for an avatar entry that wasn't there. i'm surprised it didn't print out an error but anyway that's that.
mwinter
Total posts: 4328
I will repost this one because its pretty sweet:

Drew
Total posts: 5115
On that note was anybody watching Spiderman 2 on TV friday night? During the commercial for Spiderman 3 they
Drew
Total posts: 5115
Here's what I'm talking about:

mike
Total posts: 2298
mmmmm fizzy aj. That stuff strong enough to get you drunk yet?
Drew
Total posts: 5115
I think I'm gonna put it in the cellar.
mwinter
Total posts: 4328
WHOOPS: actually he didnt' delete his posts; some crappy MySQL mishap caused his user account to be initialized with an avatarId value of "0" which is undefined (newbies are supposed to have an avatarId of "1" which is the default thing you see now). whenever the post grabbing system tried to print out what he had said it was searching the database for an avatar entry that wasn't there. i'm surprised it didn't print out an error but anyway that's that.

DOUBLE WHOOPS: Actually I just figured out what really happened.
  1. The account was created correctly with avatarId of 1.
  2. He went to "Edit Your Account"
  3. Without uploding an avatar he hit the update button
  4. My buggy account settings php had this line of code in it:
    if($avatarId == "") $avatarId = 0;
    when it should have said:
    if($avatarId == "") $avatarId = 1;

      This conditional statement will only return true if there are no avatar entries for that user (otherwise something will be selected in the list of avatars available when the user hits update) which is normal for any new user. My B guys. My B.