// ##################################################
// ################ Quick Reply Box #################
// ########### Hack version 1.0 (01.29.02) ##########
// ############## for vBulletin v2.2.2 ##############
// ##################################################
// ########### by Chen \'FireFly\' Avinadav ###########
// ########## (chen.avinadav@vbulletin.com) #########
// ##################################################
1. In showthread.php find this bit of code:
// ##################################################
if (!$getperms[\'canviewothers\'] and ($thread[\'postuserid\']!=$bbuserinfo[\'userid\'] or $bbuserinfo[\'userid\']==0)) {
show_nopermission();
}
if ((!isset($pagenumber) or $pagenumber==0) and $pagenumber!="lastpage") {
$pagenumber=1;
}
// ##################################################
And replace it with the following:
// ##################################################
if (!$getperms[\'canviewothers\'] and $thread[\'postuserid\']!=$bbuserinfo[\'userid\']) {
show_nopermission();
}
if (($bbuserinfo[\'userid\']!=$thread[\'postuserid\']) and (!$getperms[\'canviewothers\'] or !$getperms[\'canreplyothers\'])) {
$replybox=\'\';
} elseif (!$getperms[\'canview\'] or (!$getperms[\'canreplyown\'] and $bbuserinfo[\'userid\']==$thread[\'postuserid\'])) {
$replybox=\'\';
} elseif (!$thread[\'open\'] and !ismoderator($thread[\'forumid\'],\'canopenclose\')) {
$replybox=\'\';
} else {
$textareacols = gettextareawidth();
eval("\\$replybox = \\"".gettemplate(\'showthread_replybox\')."\\";");
}
if ((!isset($pagenumber) or $pagenumber==0) and $pagenumber!="lastpage") {
$pagenumber=1;
}
// ##################################################
2. Create a new template, with the name "showthread_replybox":
// ##################################################
// ##################################################
3. In the "showthread" template add $replybox right after the following:
// ##################################################
$pagenav |
http://www.vbulletin.org/forum/images/prev.gif" alt="" border="0"> Last Thread Next Thread http://www.vbulletin.org/forum/images/next.gif" alt="" border="0"> |
// ##################################################
You\'re all done, now upload showthread.php back to your server and enjoy this hack. :-)
Chen