Ok a quick question:
admin/functions.php, we are told to add:
Code:
// User-Selectable Optional Language Replacement Censor by 006
if ($bbuserinfo[usecensor]!=0 or $bbuserinfo[userid]==0) {
$bbcode=eregi_replace("wordtocensor","replacewith", $bbcode);
$bbcode=eregi_replace("wordtocensor","replacewith", $bbcode);
} else {}
// User-Selectable Optional Language Replacement Censor by 006
But there is nothing in the "} else {" statement...
Also :
registeradult template:
Code:
<tr>
<td bgcolor="{firstaltcolor}"><normalfont><b>Pop up a box when you receive a Private Message?</b></normalfont><br>
<smallfont>This will pop up a small warning box when you receive a Private Message asking whether you want to view the message.</smallfont></td>
<td bgcolor="{firstaltcolor}"><normalfont>
<input type="radio" name="pmpopup" value="yes"> yes
<input type="radio" name="pmpopup" value="no" checked> no
</normalfont></td>
</tr>
-----------------------FIND-------------------------------------
and underneath it, add
---------------------------------ADD----------------------------
<tr>
<td bgcolor="{secondaltcolor}"><normalfont><b>Pop up a box when you receive a Private Message?</b></normalfont><br>
<smallfont>This will pop up a small warning box when you receive a Private Message asking whether you want to view the message.</smallfont></td>
<td bgcolor="{secondaltcolor}"><normalfont>
<input type="radio" name="usecensor" value="yes" checked> yes
<input type="radio" name="usecensor" value="no"> no
</normalfont></td>
</tr>
Forgot to change something?
Satan