When setting variables to POST values, the plugin should check if the POST values are set to begin with, ie:
if(isset($_POST['advimage'])) {
$tadv_options['advimage'] = $_POST['advimage'] ? 1 : 0;
}When setting variables to POST values, the plugin should check if the POST values are set to begin with, ie:
if(isset($_POST['advimage'])) {
$tadv_options['advimage'] = $_POST['advimage'] ? 1 : 0;
}You must log in to post.