LOL, that's pretty funny

I'd have to actually know what it says and what each function is doing to support it
I got the 2nd part implemented and it's working GREAT!!! Thank you.
I did have to adjust one minor thing in the member.php part of the hack. For some reason vB 3.0.4 (which we have) didn't like the $session[sessionurl] part of the link (I don't see session url's with this version at all), so I removed it and it's working as hoped. Otherwise when you click on it you still get the the members profile link with his number, but it returns a blank page.
Just as an example is anyone else uses this.
Original
PHP Code:
// Logician hack : This user is always on in forum home useronline section
if ($userid==XX) {header("Location: http://www.domain.com/forum/showthread.php?$session[sessionurl]t=YY");}
// Logician hack : This user is always on in forum home useronline section
Should be:
PHP Code:
// Logician hack : This user is always on in forum home useronline section
if ($userid==XX) {header("Location: http://www.domain.com/forums/showthread.php?t=YY");}
// Logician hack : This user is always on in forum home useronline section
Again, don't forget to change XX to the UserID Number, YY to the Thread number, &
www.domain.com to your domain.
Thanks again Logician. I don't know if you realize how much we appreciate this or not, but WE REALLY DO!!! So thank you. :up: