before I contact the author could you help me to try to out with the defaults? I found something like this in the plugin: `function mcsp_options_subpanel() {
/* Lets add some default options if they don't exist
If an option with the specified name already exists, no changes are made to its value
or to the database as a whole. add_option() can only add options, not alter them.*/
$tmp_noanswer = '<p align="center">
Error: Please press the back button and fill the required field for spam protection.
</p>';
$tmp_wronganswer = '<p align="center">
Error: You have entered the wrong sum in the spam protection field.
Press the back button and try again.
</p>';
$optionarray_def = array(
'mcsp_opt_numbers' => '1~1, 2~2, 3~3, 4~4, 5~5, 6~6, 7~7, 8~8, 9~9, 10~10',
'mcsp_opt_msg_no_answer' => $tmp_noanswer,
'mcsp_opt_msg_wrong_answer' => $tmp_wronganswer,
'mcsp_opt_fieldname_useranswer' => 'mcspvalue',
'mcsp_opt_fieldname_mathresult' => 'mcspinfo',
);
add_option('plugin_mathcommentspamprotection', $optionarray_def, 'Math Comment Spam Protection Plugin Options');
/* Check form submission and update options if no error occurred */
if (isset($_POST['submit']) ) {
### SECURING FORMS ###
if ( function_exists('current_user_can') && !current_user_can('manage_options') )
die(__('Cheatin’ uh?'));
check_admin_referer( $mcsp_nonce );
### SECURING FORMS ###
$optionarray_update = array (
'mcsp_opt_numbers' => mcsp_aux_numbers_input_formatting($_POST['mcsp_opt_numbers']),
'mcsp_opt_msg_no_answer' => $_POST['mcsp_opt_msg_no_answer'],
'mcsp_opt_msg_wrong_answer' => $_POST['mcsp_opt_msg_wrong_answer'],
'mcsp_opt_fieldname_useranswer' => mcsp_aux_fieldname_formatting($_POST['mcsp_opt_fieldname_useranswer']),
'mcsp_opt_fieldname_mathresult' => mcsp_aux_fieldname_formatting($_POST['mcsp_opt_fieldname_mathresult'])
);
update_option('plugin_mathcommentspamprotection', $optionarray_update);
}
/* Get options */
$optionarray_def = get_option('plugin_mathcommentspamprotection');`
what should I use then in the WPMU new blog settings plugin from that lines. Thanks.