what about having it clean out the values for closereason and whoclosed when reopening the thread asthis info is redundant then anyway?
like, in postings.php replace:
PHP Code:
$closereason=" closereason='".addslashes($reason)."',whoclosed='".addslashes($bbuserinfo[username])."', ";
} else {
$closereason="";
with:
PHP Code:
$closereason=" closereason='".addslashes($reason)."',whoclosed='".addslashes($bbuserinfo[username])."', ";
} else {
$closereason=" closereason='',whoclosed='', ";
imho this should stop interfering of the hacks as this opening rotine should be called by the other hack too...
kreftt