Brock
Noobie
Posts: 18
|
|
Show Sig once mod
« on: August 29, 2002, 04:35:09 PM » |
|
Since I have a large # of users with rather large pictures in thier signature block, I decided to toss something in to only display them once in any given thread.
I'd like to see this be a toggle in the mod screen, but I'm not yet familiar enough with the code to add it myself.
The mod itself is simple, in Display.php, find the following line :
print str_replace (array('"', ''', '&', '<', '>'), array('"', "'", '&', '<', '>'), $userprofile[$mname]['signature']); and replace it with :
if(!$sig_shown[$mname]) { print str_replace (array('"', ''', '&', '<', '>'), array('"', "'", '&', '<', '>'), $userprofile[$mname]['signature']); $sig_shown[$mname] = 1; }
|