@Tim Wheatley:
First open your modified usergroup.php.
Replace
PHP Code:
makeyesnocode("Can add private text messages","canaddprivtxt",$usergroup[cannaddprivtxt]);
with
PHP Code:
makeyesnocode("Can add private text messages","canaddprivtxt",$usergroup[canaddprivtxt]);
---
Now, open your modified showthread.php. When you first modified it, you inserted the following
two times:
PHP Code:
// +++++++ Private Text Hack [ g-force2k2 ] +++++++
if(!$getperms['canviewprivtxt']) {
$viewprivtxt=0;
}
// +++++++ Private Text Hack [ g-force2k2 ] +++++++
Replace
both with:
PHP Code:
// +++++++ Private Text Hack [ g-force2k2 ] +++++++
if($getperms['canviewprivtxt']) {
$viewprivtxt=1;
}
// +++++++ Private Text Hack [ g-force2k2 ] +++++++
Now everything should work.