Version 1.01 Upgrade Instructions:
File:
postings.php
Find:
PHP Code:
$DB_site->query("
UPDATE " . TABLE_PREFIX . "thread SET
visible = $visible,
open = $open,
sticky = $sticky ,
title = '" . addslashes(htmlspecialchars_uni($title)) . "',
iconid = $iconid,
notes = '" . addslashes($notes) . "'
WHERE threadid = $threadid
");
Replace with:
PHP Code:
$DB_site->query("
UPDATE " . TABLE_PREFIX . "thread SET
visible = $visible,
open = $open,
sticky = $sticky ,
title = '" . addslashes(htmlspecialchars_uni($title)) . "',
iconid = $iconid,
notes = '" . addslashes($notes) . "',
bannedposters = '" . addslashes($bannedposters) ."'
WHERE threadid = $threadid
");
File:
postings.php
Find:
Replace with:
PHP Code:
'title' => STR,
'bannedposters' => STR
Template:
threadadmin_editthread
Find:
HTML Code:
<div class="fieldset">
$vbphrase[moderator_notes] / $vbphrase[thread_summary]:<br />
<input type="text" class="bginput" name="notes" value="$threadinfo[notes]" size="50" maxlength="250" />
</div>
Below, add:
HTML Code:
<div class="fieldset">
$vbphrase[banned_users]:<br />
<input type="text" class="bginput" name="bannedposters" value="$threadinfo[bannedposters]" size="50" maxlength="250" />
</div>