PDA

View Full Version : Pm Icons?


SpotMe
07-02-2002, 04:28 AM
Ho can I change the name of the icons for the PM folder on forumview? Now they are on.gif and off.gif. I looked in forumhome_pmloggedin and all that was in there was $lightbulb.gif ? Any ideas?

SemperFidelis
07-02-2002, 07:20 AM
Open forum/index.php

Find this code:


if ($newpm['messages']==0) {
$lightbulb='off';
} else {
$lightbulb='on';
}



Replace with this: (or whatever the names of the files are)


if ($newpm['messages']==0) {
$lightbulb='pmoff';
} else {
$lightbulb='pmon';
}

SpotMe
07-02-2002, 04:55 PM
That worked!

Thanks :)