Quote:
Originally Posted by jluerken
Yes there is!
Change the following lines of the Plugin newthread_form_complete from
PHP Code:
$checked['autodiscuss'] = ($_POST['autodiscuss']) ? 'checked="checked"' : '';
to
PHP Code:
$checked['autodiscuss'] = ($_POST['autodiscuss'] OR empty($postpreview)) ? 'checked="checked"' : '';
|
Thank you very much, I'm going to try it now.