Plugin: Show Thread: Display moderation option if permitted
Change this line:
PHP Code:
$vbulletin->templatecache['SHOWTHREAD'] = str_replace('<li class="formsubmit">', '<li><label><input type="radio" name="do" value="createptissue" /> ' . $vbphrase['pt_create_issue'] . '…</label></li><li class="formsubmit">', $vbulletin->templatecache['SHOWTHREAD']);
By this line:
PHP Code:
$vbulletin->templatecache['SHOWTHREAD'] = str_replace('<form action="postings.php" method="post">
<ul class="popupbody popuphover">', '<form action="postings.php" method="post">
<ul class="popupbody popuphover">
<li><label><input type="radio" name="do" value="createptissue" /> ' . $vbphrase['pt_create_issue'] . '…</label></li>', $vbulletin->templatecache['SHOWTHREAD']);
PS: I know this is not a good way to add things on templates but there is no template hook in this place and it seems we will not have this one.
http://www.vbulletin.com/forum/showt...=1#post1983704