Changeset 2704804
- Timestamp:
- 04/05/2022 06:46:27 AM (4 years ago)
- Location:
- ink-official/trunk
- Files:
-
- 3 edited
-
ink-content-block.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
src/metadata.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ink-official/trunk/ink-content-block.php
r2697502 r2704804 4 4 Plugin URL: https://inkforall.com 5 5 Description: INK Block plugin allows you to import .ink files to wordpress posts / pages. 6 Version: 4.0. 76 Version: 4.0.8 7 7 Text Domain: ink 8 8 */ -
ink-official/trunk/readme.txt
r2697502 r2704804 5 5 Tags: import INK file, INK, SEO, INK Editor importer, inkforall 6 6 Tested up to: 5.9.2 7 Stable tag: 4.0. 77 Stable tag: 4.0.8 8 8 Requires at least: 4.4 9 9 Requires PHP: 5.6.20 … … 123 123 == Changelog == 124 124 125 = 4.0.8 = 126 127 - Bug Fixes 128 125 129 = 4.0.7 = 126 130 -
ink-official/trunk/src/metadata.php
r2623983 r2704804 67 67 function ink_save_meta_box_data($post_id){ 68 68 69 if (sanitize_text_field($_POST['myplugin_meta_box_nonce'])===null) { 70 return; 71 } 72 73 if (!wp_verify_nonce(sanitize_text_field($_POST['myplugin_meta_box_nonce']), 'myplugin_meta_box')) { 74 return; 75 } 76 69 70 if ( ! isset( $_POST['myplugin_meta_box_nonce'] ) || ! wp_verify_nonce( $_POST['myplugin_meta_box_nonce'], 'myplugin_meta_box' ) ) { 71 return; 72 73 } 74 75 77 76 if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) { 78 77 return;
Note: See TracChangeset
for help on using the changeset viewer.