Changeset 2962617
- Timestamp:
- 09/04/2023 03:30:40 PM (2 years ago)
- Location:
- easy-post-types-fields
- Files:
-
- 10 edited
- 1 copied
-
tags/1.1.6 (copied) (copied from easy-post-types-fields/trunk)
-
tags/1.1.6/changelog.txt (modified) (1 diff)
-
tags/1.1.6/easy-post-types-fields.php (modified) (2 diffs)
-
tags/1.1.6/readme.txt (modified) (2 diffs)
-
tags/1.1.6/src/Post_Types/Abstract_Post_Type.php (modified) (1 diff)
-
tags/1.1.6/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/easy-post-types-fields.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/Post_Types/Abstract_Post_Type.php (modified) (1 diff)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easy-post-types-fields/tags/1.1.6/changelog.txt
r2909970 r2962617 1 = 1.1.6 = 2 * Fix: Custom field's value con not be deleted 3 1 4 = 1.1.5 = 2 5 * Fix: Fatal error when activating the plugin -
easy-post-types-fields/tags/1.1.6/easy-post-types-fields.php
r2909970 r2962617 12 12 * Plugin URI: https://wordpress.org/plugins/easy-post-types-fields/ 13 13 * Description: Create custom post types, fields and taxonomies. 14 * Version: 1.1. 514 * Version: 1.1.6 15 15 * Author: Barn2 Plugins 16 16 * Author URI: https://barn2.com … … 30 30 } 31 31 32 const PLUGIN_VERSION = '1.1. 5';32 const PLUGIN_VERSION = '1.1.6'; 33 33 const PLUGIN_FILE = __FILE__; 34 34 -
easy-post-types-fields/tags/1.1.6/readme.txt
r2957885 r2962617 6 6 Tested up to: 6.3 7 7 Requires PHP: 7.2 8 Stable tag: 1.1. 58 Stable tag: 1.1.6 9 9 License: GNU General Public License v3.0 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 135 135 == Changelog == 136 136 137 = 1.1. 5=138 * Fix: Fatal error when activating the plugin137 = 1.1.6 = 138 * Fix: Custom field's value can not be deleted 139 139 140 140 See changelog.txt for more details. -
easy-post-types-fields/tags/1.1.6/src/Post_Types/Abstract_Post_Type.php
r2768423 r2962617 271 271 update_post_meta( $post_id, $meta_key, $postdata[ $meta_key ] ); 272 272 } 273 else { 274 delete_post_meta( $post_id, $meta_key ); 275 } 273 276 } 274 277 } -
easy-post-types-fields/tags/1.1.6/vendor/composer/installed.php
r2909970 r2962617 6 6 'install_path' => __DIR__ . '/../../', 7 7 'aliases' => array(), 8 'reference' => ' eb6afda88e0f1a7a2ad5603af06e4a4e33e96e0b',8 'reference' => 'b09c2b671125f4d62d68d49e5dc6438b1315c44e', 9 9 'name' => 'barn2/easy-post-types-fields', 10 10 'dev' => false, … … 17 17 'install_path' => __DIR__ . '/../../', 18 18 'aliases' => array(), 19 'reference' => ' eb6afda88e0f1a7a2ad5603af06e4a4e33e96e0b',19 'reference' => 'b09c2b671125f4d62d68d49e5dc6438b1315c44e', 20 20 'dev_requirement' => false, 21 21 ), -
easy-post-types-fields/trunk/changelog.txt
r2909970 r2962617 1 = 1.1.6 = 2 * Fix: Custom field's value con not be deleted 3 1 4 = 1.1.5 = 2 5 * Fix: Fatal error when activating the plugin -
easy-post-types-fields/trunk/easy-post-types-fields.php
r2909970 r2962617 12 12 * Plugin URI: https://wordpress.org/plugins/easy-post-types-fields/ 13 13 * Description: Create custom post types, fields and taxonomies. 14 * Version: 1.1. 514 * Version: 1.1.6 15 15 * Author: Barn2 Plugins 16 16 * Author URI: https://barn2.com … … 30 30 } 31 31 32 const PLUGIN_VERSION = '1.1. 5';32 const PLUGIN_VERSION = '1.1.6'; 33 33 const PLUGIN_FILE = __FILE__; 34 34 -
easy-post-types-fields/trunk/readme.txt
r2957885 r2962617 6 6 Tested up to: 6.3 7 7 Requires PHP: 7.2 8 Stable tag: 1.1. 58 Stable tag: 1.1.6 9 9 License: GNU General Public License v3.0 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 135 135 == Changelog == 136 136 137 = 1.1. 5=138 * Fix: Fatal error when activating the plugin137 = 1.1.6 = 138 * Fix: Custom field's value can not be deleted 139 139 140 140 See changelog.txt for more details. -
easy-post-types-fields/trunk/src/Post_Types/Abstract_Post_Type.php
r2768423 r2962617 271 271 update_post_meta( $post_id, $meta_key, $postdata[ $meta_key ] ); 272 272 } 273 else { 274 delete_post_meta( $post_id, $meta_key ); 275 } 273 276 } 274 277 } -
easy-post-types-fields/trunk/vendor/composer/installed.php
r2909970 r2962617 6 6 'install_path' => __DIR__ . '/../../', 7 7 'aliases' => array(), 8 'reference' => ' eb6afda88e0f1a7a2ad5603af06e4a4e33e96e0b',8 'reference' => 'b09c2b671125f4d62d68d49e5dc6438b1315c44e', 9 9 'name' => 'barn2/easy-post-types-fields', 10 10 'dev' => false, … … 17 17 'install_path' => __DIR__ . '/../../', 18 18 'aliases' => array(), 19 'reference' => ' eb6afda88e0f1a7a2ad5603af06e4a4e33e96e0b',19 'reference' => 'b09c2b671125f4d62d68d49e5dc6438b1315c44e', 20 20 'dev_requirement' => false, 21 21 ),
Note: See TracChangeset
for help on using the changeset viewer.