Okay, to link to the thread introduction changer actually IN the admin options menu, first
back up your showthread_adminoptions template in case this doesn't work, then replace it with the following:
Code:
<table cellpadding="0" cellspacing="0" border="0">
<form action="postings.php" method="get"><tr><td>
<smallfont>
<input type="hidden" name="s" value="$session[dbsessionhash]">
<input type="hidden" name="threadid" value="$threadid">
<b>Admin Options:</b><br>
<select name="action"
onchange="window.location=('this.options[this.selectedIndex].value+'&s=$session[dbsessionhash]&threadid=$threadid')">
<option value="postings.php?action=editthread" selected>-- Thread Options --</option>
<option value="postings.php?action=openclosethread">Open / Close Thread</option>
<option value="postings.php?action=movecopythread">Move / Copy Thread</option>
<option value="postings.php?action=editthread">Edit Thread</option>
<option value="postings.php?action=deletethread">Delete Thread / Posts</option>
<option value="postings.php?action=merge">Merge Threads</option>
<option value="postings.php?action=split">Split Thread</option>
<option value="postings.php?action=stick">Stick / Unstick Thread</option>
<option value="threadintro.php?">Thread Introduction</option>
</select>$gobutton
</smallfont>
</td></tr></form>
</table>