If you want to change what the button says, there are two things you need to change in the newthread.php (should probably have been one, but oh well ^^)
Find:
PHP Code:
if($_REQUEST['discuss']=='Submit + Discussion Thread' && $dcs_chk[0]==$dcs_mkr[3] && $this_forum==$dcs_mkr[0]){
Change to:
PHP Code:
if($_REQUEST['discuss']=='WHATEVER YOU WANT' && $dcs_chk[0]==$dcs_mkr[3] && $this_forum==$dcs_mkr[0]){
//------
Find:
PHP Code:
<input type='submit' class='button' name='discuss' value='Submit + Discussion Thread' accesskey='d'/>
Change the
value tag to the exact same text as your changed above.
????????????????????
If you don't want to add that large amount of code to your newthread.php, you can add this instead instead:
PHP Code:
require_once('./includes/functions_discussion_maker.php');
Then, place the attached file into your includes folder~