Checkbox var change

This commit is contained in:
Jay Wood
2015-08-29 13:13:25 -04:00
parent 3f92ad967c
commit 5bb0fee8be

View File

@ -87,8 +87,8 @@ class CWV3Admin {
// check isset before access (edit by @jgraup) // check isset before access (edit by @jgraup)
if ( isset( $_POST['cwv3_auth'] ) ) { if ( isset( $_POST['cwv3_auth'] ) ) {
$mydata = sanitize_text_field( $_POST['cwv3_auth'] ); $cwv3_checkbox = sanitize_text_field( $_POST['cwv3_auth'] );
update_post_meta( $post_id, 'cwv3_auth', $mydata ); update_post_meta( $post_id, 'cwv3_auth', $cwv3_checkbox );
} }
} }