It is a simple check that you can add in message.php around line 311
| Code: |
<?php
if ($msg_signature) {
?>
<tr><td class = "fb-msgview-right-c" >
<?php
echo '<div class="msgsignature" >';
if (substr_count($msg_signature, "http")> 2 || substr_count($msg_signature, "img")> 0 ) {
echo '<div class="automsgtips">Automatic Filter Message : Please follow the <a href="'.sefRelToAbs(JB_LIVEURL. '&func=rules').'" >forum rules </a> for forum signatures...Thanks</div>';
}
else {
echo $msg_signature;
}
echo '</div>';
?>
</td>
<td class = "fb-msgview-left-c">
</td>
</tr>
<?php
}
?>
|