Quote:
Originally Posted by Socomjunky.com
okay i have the hack installed but its producing blank topics was it because they didnt fill out anything?
|
well, i think i found the bug you've mentioned on.
open register.php,
FIND:
Code:
{ $_POST['welcomethread_title'] = "$vbphrase[welcomethread_title_default]"; } // too lazy to check for empty title
REPLACE IT WITH:
Code:
{ $_POST['welcomethread_title'] = "Hi, I am new!"; } // too lazy to check for empty title
FIND:
Code:
{ $_POST['welcomethread_message'] = "$vbphrase[welcomethread_message_default]"; } // ehhh, use default if empty
REPLACE WITH:
Code:
{ $_POST['welcomethread_message'] = "Hello everyone, I am new here. Just thought to drop a line to say hi."; } // ehhh, use default if empty
Those will be default messages if user left title or message field blank. you can change it if you like.
I think i'll make those field as required ones after all. :squareeyed: