Changeset 3192355
- Timestamp:
- 11/19/2024 02:12:42 PM (13 months ago)
- Location:
- custom-post-type-ui
- Files:
-
- 45 added
- 3 edited
-
tags/1.17.2 (added)
-
tags/1.17.2/LICENSE (added)
-
tags/1.17.2/build (added)
-
tags/1.17.2/build/cptui-styles.css (added)
-
tags/1.17.2/build/cptui-styles.css.map (added)
-
tags/1.17.2/build/cptui-styles.min.css (added)
-
tags/1.17.2/build/cptui.asset.php (added)
-
tags/1.17.2/build/cptui.js (added)
-
tags/1.17.2/build/cptui.js.map (added)
-
tags/1.17.2/build/cptui.min.js (added)
-
tags/1.17.2/build/cptui.min.js.map (added)
-
tags/1.17.2/build/dashiconsPicker.asset.php (added)
-
tags/1.17.2/build/dashiconsPicker.js (added)
-
tags/1.17.2/build/dashiconsPicker.js.map (added)
-
tags/1.17.2/build/dashiconsPicker.min.js (added)
-
tags/1.17.2/build/dashiconsPicker.min.js.map (added)
-
tags/1.17.2/classes (added)
-
tags/1.17.2/classes/class.cptui_admin_ui.php (added)
-
tags/1.17.2/classes/class.cptui_debug_info.php (added)
-
tags/1.17.2/custom-post-type-ui.php (added)
-
tags/1.17.2/external (added)
-
tags/1.17.2/external/wpgraphql.php (added)
-
tags/1.17.2/images (added)
-
tags/1.17.2/images/cptui-icon-173x173.png (added)
-
tags/1.17.2/images/wds_ads (added)
-
tags/1.17.2/images/wds_ads/buddypages.png (added)
-
tags/1.17.2/images/wds_ads/cptui-extended.png (added)
-
tags/1.17.2/images/wds_ads/instago.png (added)
-
tags/1.17.2/images/wds_ads/wp-search-with-algolia-pro.png (added)
-
tags/1.17.2/inc (added)
-
tags/1.17.2/inc/about.php (added)
-
tags/1.17.2/inc/listings.php (added)
-
tags/1.17.2/inc/post-types.php (added)
-
tags/1.17.2/inc/support.php (added)
-
tags/1.17.2/inc/taxonomies.php (added)
-
tags/1.17.2/inc/tools-sections (added)
-
tags/1.17.2/inc/tools-sections/tools-debug.php (added)
-
tags/1.17.2/inc/tools-sections/tools-get-code.php (added)
-
tags/1.17.2/inc/tools-sections/tools-post-types.php (added)
-
tags/1.17.2/inc/tools-sections/tools-taxonomies.php (added)
-
tags/1.17.2/inc/tools.php (added)
-
tags/1.17.2/inc/utility.php (added)
-
tags/1.17.2/inc/wp-cli.php (added)
-
tags/1.17.2/readme.txt (added)
-
tags/1.17.2/wpml-config.xml (added)
-
trunk/custom-post-type-ui.php (modified) (2 diffs)
-
trunk/inc/tools.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
custom-post-type-ui/trunk/custom-post-type-ui.php
r3108739 r3192355 17 17 * Description: Admin UI panel for registering custom post types and taxonomies 18 18 * Author: WebDevStudios 19 * Version: 1.17. 119 * Version: 1.17.2 20 20 * Author URI: https://webdevstudios.com/ 21 21 * Text Domain: custom-post-type-ui … … 34 34 } 35 35 36 define( 'CPT_VERSION', '1.17. 1' ); // Left for legacy purposes.37 define( 'CPTUI_VERSION', '1.17. 1' );36 define( 'CPT_VERSION', '1.17.2' ); // Left for legacy purposes. 37 define( 'CPTUI_VERSION', '1.17.2' ); 38 38 define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) ); 39 39 -
custom-post-type-ui/trunk/inc/tools.php
r2948753 r3192355 398 398 if ( ! empty( $cptui_post_types ) ) { 399 399 foreach ( $cptui_post_types as $type => $values ) { 400 $cptui_post_types[ $type ]['description'] = wp_slash( html_entity_decode( $values['description'] ) ); 400 if ( ! empty( $values['description'] ) ) { 401 $cptui_post_types[ $type ]['description'] = wp_slash( html_entity_decode( $values['description'] ) ); 402 } 401 403 } 402 404 $content = wp_json_encode( $cptui_post_types ); … … 440 442 if ( ! empty( $cptui_taxonomies ) ) { 441 443 foreach ( $cptui_taxonomies as $tax => $values ) { 442 $cptui_taxonomies[ $tax ]['description'] = wp_slash( html_entity_decode( $values['description'] ) ); 444 if ( ! empty( $values['description'] ) ) { 445 $cptui_taxonomies[ $tax ]['description'] = wp_slash( html_entity_decode( $values['description'] ) ); 446 } 443 447 } 444 448 $content = wp_json_encode( $cptui_taxonomies ); -
custom-post-type-ui/trunk/readme.txt
r3108739 r3192355 4 4 Tags: custom post types, post type, taxonomy, content types, types 5 5 Requires at least: 6.5 6 Tested up to: 6. 5.57 Stable tag: 1.17. 16 Tested up to: 6.7 7 Stable tag: 1.17.2 8 8 License: GPL-2.0+ 9 9 Requires PHP: 7.4 … … 32 32 33 33 == Changelog == 34 35 = 1.17.2 - 2024-11-19 = 36 * Fixed: PHP warnings around empty description variables from tools page. 37 * Updated: Confirmed compatibility with WordPress 6.7 34 38 35 39 = 1.17.1 - 2024-06-27 = … … 105 109 == Upgrade Notice == 106 110 111 = 1.17.2 - 2024-11-19 = 112 * Fixed: PHP warnings around empty description variables from tools page. 113 * Updated: Confirmed compatibility with WordPress 6.7 114 107 115 = 1.17.1 - 2024-06-27 = 108 116 * Fixed: Missed re-showing of autolabel fill links for js enabled browsers.
Note: See TracChangeset
for help on using the changeset viewer.