in options.php [49:61]
function fbmcc_update_options() {
if ( current_user_can( 'manage_options' ) ) {
check_ajax_referer( 'update_fmcc_code' );
if ($_POST['pageTypes']) { update_option( 'fbmcc_page_types', $_POST['pageTypes']); }
if ($_POST['pageID']) { update_option( 'fbmcc_pageID', fbmcc_sanitize_page_id($_POST['pageID'])); }
if ($_POST['locale']) { update_option( 'fbmcc_locale', fbmcc_sanitize_locale($_POST['locale'])); }
update_option('fbmcc_install_ts', time());
}
wp_die();
}