View Full Version : adding default msg icon when posting stickies
212rikanmofo
04-17-2002, 08:35 AM
i want a default msg icon posted when i turn the message into sticky...
kinda like when you post a poll, it shows up with a default poll icon... how can i do the same for sticky msgs?
Admin
04-17-2002, 04:12 PM
In forumdisplay.php replace this:
if ($foruminfo[allowicons] and $thread[pollid]!=0) {
$thread='<img src="{imagesf[i]older}/poll.gif" alt="Poll" width="15" height="15" border="0">';
}
with this:
if ($foruminfo['allowicons'] and $thread['pollid'] != 0) {
$thread = '<img src="{imag[i]esfolder}/poll.gif" alt="Poll" width="15" height="15" border="0">';
} elseif ($foruminfo['allowicons'] and $thread['sticky']) {
$thread = '<img src="{images[i]folder}/sticky.gif" alt="Sticky" width="15" height="15" border="0">';
}
Then create an image named sticky.gif in the images folder.
212rikanmofo
04-17-2002, 08:21 PM
thank you! :D
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.