Quote:
Originally Posted by Beermonster
Nice hack, just a little addition to it if possible, could it also automatically close the thread?
|
Hope you don't mind I've made this little addition, in the resolved.php
Find:
Code:
$DB_site->query("
UPDATE " . TABLE_PREFIX . "thread
SET resolved = '1'
WHERE threadid = " . intval($threadid) . "
");
Add under:
Code:
$DB_site->query("
UPDATE " . TABLE_PREFIX . "thread
SET open = '0'
WHERE threadid = " . intval($threadid) . "
");