Changeset 2548552
- Timestamp:
- 06/15/2021 09:48:27 PM (5 years ago)
- Location:
- remove-schema/trunk
- Files:
-
- 2 edited
-
admin/class-remove-schema-post-editor.php (modified) (1 diff)
-
remove-schema.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
remove-schema/trunk/admin/class-remove-schema-post-editor.php
r2215002 r2548552 90 90 91 91 // security check 92 if ( isset($_POST['remove_schema_nonce']) &&!wp_verify_nonce( $_POST['remove_schema_nonce'], plugin_basename( __FILE__ ) ) )92 if ( isset($_POST['remove_schema_nonce']) || !wp_verify_nonce( $_POST['remove_schema_nonce'], plugin_basename( __FILE__ ) ) ) 93 93 return; 94 94 -
remove-schema/trunk/remove-schema.php
r2362095 r2548552 17 17 * Plugin URI: https://plugin.nl/en/remove-schema-plugin/ 18 18 * Description: Remove all Microdata, RDFa and/or JSON-ld that you don’t want on your page. 19 * Version: 1. 419 * Version: 1.5 20 20 * Author: Plugin.nl 21 21 * Author URI: https://plugin.nl/en/remove-schema-plugin/ … … 34 34 * Currently plugin version. 35 35 */ 36 define( 'REMOVE_SCHEMA_VERSION', '1. 4' );36 define( 'REMOVE_SCHEMA_VERSION', '1.5' ); 37 37 38 38 /**
Note: See TracChangeset
for help on using the changeset viewer.