Quote:
Originally Posted by mfyvie
As always, excellent work Paul M.
I made one small modification to show the actual number of points given when you hover over the green, red or black icon. It's pretty simple, just edit Memberinfo_reputation_bit and search for:
Code:
<td class="alt2"><img src="$stylevar[imgdir_reputation]/reputation_$posneg.gif" border="0" alt="" /></td>
replace with:
Code:
<td class="alt2"><img src="$stylevar[imgdir_reputation]/reputation_$posneg.gif" border="0" alt="Points given: $reputation[reputation]" /></td>
Might be an idea for future versions?
|
How about :
Code:
<td class="alt2">
<if condition="(($reputation['reputation'] < -1) || ($reputation['reputation'] > 1))">
<B><if condition="$reputation['reputation'] > 0">+</if>$reputation[reputation]</B>
<else />
<img src="$stylevar[imgdir_reputation]/reputation_$posneg.gif" border="0" alt="$reputation[reputation]">
</if>
</td>