Quick Reply box SP1/1.1 1.0 It's the most wanted vB feature: The quick reply box! How to use: 1...Install the mod as normal and upload the modified files. 2...Go to the "Forum Preferences and Settings", and check the box next to "Enable Quick Reply Box". 3...Also check the box next to "Show Smilies in Quick Reply Box" if you want to show smiley buttons in the quick reply box. 4...Then check out the bottom of the thread....it's two boxes (subject and message) with buttons to post or reset! Note: In this version, guests do not have access to the quick reply box, because they get an error anyway! Credit goes to Krikkert for the original code, Colicab for putting it together, and Bhra Webmaster for fixing everything and adding all the options so it actually works! Bhra Webmaster, Krikkert, Colicab http://www.bhra.org.uk Sources/Display.pl $yytitle = $msubthread; &template; exit; if ($username ne "Guest" && $mstate != 1 && $enable_quickreply == 1) { $yymain .= qq~
$txt{'172a'}
~; if ($enable_quicksmilies == 1) { $yymain .= qq~ ~; } $yymain .= qq~
$txt{'70'}:
$txt{'297'}:
$txt{'72'}:
 
~; }
Sources/AdminEdit.pl if ($enable_ubbc) { $ubbcchecked = ' checked'; } if ($enable_quickreply) { $quickreplychecked = ' checked'; } if ($enable_quicksmilies) { $quicksmilieschecked = ' checked'; } $txt{'378'} $txt{'173a'} $txt{'174a'} $guestaccess = $guestaccess ? 0 : 1; $enable_quickreply = $FORM{'enable_quickreply'} ? 1 : 0; $enable_quicksmilies = $FORM{'enable_quicksmilies'} ? 1 : 0; \$enable_ubbc = $enable_ubbc; # Set to 1 if you want to enable UBBC (Uniform Bulletin Board Code) \$enable_quickreply = $enable_quickreply; # Set to 1 if you want to enable the quick reply box \$enable_quicksmilies = $enable_quicksmilies; # Set to 1 if you want to show smilies in the quick reply box english.lng $txt{'171'} = "Displaying Results"; $txt{'172a'} = "Quick Reply Box"; $txt{'173a'} = "Enable Quick Reply Box?"; $txt{'174a'} = "Show Smilies in Quick Reply Box?";