I'll package everything up and send out an update tomorrow but since you've been waiting here it is:
Note this only applies when this is already installed!
Replace showthread_reason with this:
Code:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center" style="border-bottom-width:0px">
<tr>
<td class="alt1" width="100%">
<b>Reason thread was closed:</b> <br />
<div class="smallfont">
$thread[reason]
</div>
<if condition="!empty($thread[who])"><b>Thread Closed By:</b> <span class="smallfont">$thread[who]</span></if>
</td>
</tr>
</table>
Run this query:
Code:
ALTER TABLE thread ADD `who` VARCHAR(50) NOT NULL;
In postings.php find this:
Code:
$DB_site->query("UPDATE " . TABLE_PREFIX . "thread SET open = $threadinfo[open], reason = '" . addslashes($_POST[reason]) . "' WHERE threadid = $threadid");
...and replace with...
Code:
$DB_site->query("UPDATE " . TABLE_PREFIX . "thread SET open = $threadinfo[open], reason = '" . addslashes($_POST[reason]) . "', who = '" . addslashes($bbuserinfo[username]) . "' WHERE threadid = $threadid");
On a side note. Any previously closed threads will not have who closed them. Only threads closed in the future.
Let me know how it works! :up: