one minor change to this class hack to make it work with the "Recycle Bin" hack.
This lets you click the titles of the deleted threads to view them.
in modlog.php find:
PHP Code:
if ($subArray[type] != "2") // Deleted?
echo "<a href=\"../showthread.php?threadid=$subArray[threadid]\" target=\"_blank\">$subArray[threadtitle]</a>";
else
echo "$subArray[threadtitle]";
replace with
PHP Code:
if ($subArray[type] != "2") // Deleted?
echo "<a href=\"../showthread.php?threadid=$subArray[threadid]\" target=\"_blank\">$subArray[threadtitle]</a>";
else
echo "<a href=\"../showthread.php?threadid=$subArray[threadid]\" target=\"_blank\">$subArray[threadtitle]</a>";
Don't forget you need the recycle bin hack for this to work.