Changeset 2553487
- Timestamp:
- 06/24/2021 04:56:57 PM (5 years ago)
- Location:
- custom-post-type-maker
- Files:
-
- 3 deleted
- 4 edited
- 8 copied
-
tags/1.1.15 (copied) (copied from custom-post-type-maker/trunk)
-
tags/1.1.15/CHANGELOG.md (copied) (copied from custom-post-type-maker/trunk/CHANGELOG.md) (1 diff)
-
tags/1.1.15/README.md (copied) (copied from custom-post-type-maker/trunk/README.md) (1 diff)
-
tags/1.1.15/class-cptm.php (copied) (copied from custom-post-type-maker/trunk/class-cptm.php) (5 diffs)
-
tags/1.1.15/custom-post-type-maker.php (deleted)
-
tags/1.1.15/lang (copied) (copied from custom-post-type-maker/trunk/lang)
-
tags/1.1.15/lang/.gitkeep (copied) (copied from custom-post-type-maker/trunk/lang/.gitkeep)
-
tags/1.1.15/lang/custom-post-type-maker-fr_FR.mo (deleted)
-
tags/1.1.15/lang/custom-post-type-maker-fr_FR.po (deleted)
-
tags/1.1.15/lang/custom-post-type-maker.pot (copied) (copied from custom-post-type-maker/trunk/lang/custom-post-type-maker.pot)
-
tags/1.1.15/readme.txt (copied) (copied from custom-post-type-maker/trunk/readme.txt) (2 diffs)
-
trunk/CHANGELOG.md (modified) (1 diff)
-
trunk/README.md (modified) (1 diff)
-
trunk/class-cptm.php (modified) (5 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
custom-post-type-maker/tags/1.1.15/CHANGELOG.md
r2531176 r2553487 1 1 # Changelog 2 3 ## 1.1.15 4 5 - Better sanitize taxonomy name as suggested by @ldeejay 2 6 3 7 ## 1.1.14 -
custom-post-type-maker/tags/1.1.15/README.md
r2531176 r2553487 28 28 29 29 ## Changelog 30 31 ## 1.1.15 32 33 - Better sanitize taxonomy name as suggested by @ldeejay 30 34 31 35 ## 1.1.14 -
custom-post-type-maker/tags/1.1.15/class-cptm.php
r2531176 r2553487 4 4 Plugin URI: https://github.com/Graffino/custom-post-type-maker 5 5 Description: Custom Post Type Maker lets you create Custom Post Types and custom Taxonomies in a user friendly way. 6 Version: 1.1.1 46 Version: 1.1.15 7 7 Author: Graffino 8 8 Author URI: http://www.graffino.com/ … … 32 32 * @license http://www.gnu.org/licenses/gpl-2.0.html GPLv2 33 33 * @package Custom_Post_Types_Maker 34 * @version 1.1.1 434 * @version 1.1.15 35 35 */ 36 36 … … 62 62 $this->dir = plugins_url( '', __FILE__ ); 63 63 $this->path = plugin_dir_path( __FILE__ ); 64 $this->version = '1.1.1 4';64 $this->version = '1.1.15'; 65 65 66 66 // actions … … 891 891 <td class="label"> 892 892 <label for="cptm_tax_name"><span class="required">*</span> <?php _e( 'Custom Taxonomy Name', 'custom-post-type-maker' ); ?></label> 893 <p><?php _e( 'The taxonomy name . Used to retrieve custom taxonomy content.', 'custom-post-type-maker' ); ?></p>893 <p><?php _e( 'The taxonomy name (use lowercase only). Used to retrieve custom taxonomy content. Must be all in lower-case and without any spaces.', 'custom-post-type-maker' ); ?></p> 894 894 <p><?php _e( 'e.g. movies', 'custom-post-type-maker' ); ?></p> 895 895 </td> … … 1145 1145 // Update taxonomy meta values 1146 1146 if ( isset( $_POST['cptm_tax_name'] ) ) { 1147 update_post_meta( $post_id, 'cptm_tax_name', sanitize_text_field( str _replace( ' ', '', $_POST['cptm_tax_name']) ) );1147 update_post_meta( $post_id, 'cptm_tax_name', sanitize_text_field( strtolower( str_replace( ' ', '', $_POST['cptm_tax_name'] ) ) ) ); 1148 1148 } 1149 1149 -
custom-post-type-maker/tags/1.1.15/readme.txt
r2531176 r2553487 4 4 Requires at least: 3.0.0 5 5 Tested up to: 5.7 6 Stable tag: 1.1.1 46 Stable tag: 1.1.15 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 66 66 67 67 == Changelog == 68 69 = 1.1.15 = 70 71 - Better sanitize taxonomy name as suggested by @ldeejay 72 73 = 1.1.14 = 74 75 - Compatibility with future version of WP 68 76 69 77 = 1.1.13 = -
custom-post-type-maker/trunk/CHANGELOG.md
r2531176 r2553487 1 1 # Changelog 2 3 ## 1.1.15 4 5 - Better sanitize taxonomy name as suggested by @ldeejay 2 6 3 7 ## 1.1.14 -
custom-post-type-maker/trunk/README.md
r2531176 r2553487 28 28 29 29 ## Changelog 30 31 ## 1.1.15 32 33 - Better sanitize taxonomy name as suggested by @ldeejay 30 34 31 35 ## 1.1.14 -
custom-post-type-maker/trunk/class-cptm.php
r2531176 r2553487 4 4 Plugin URI: https://github.com/Graffino/custom-post-type-maker 5 5 Description: Custom Post Type Maker lets you create Custom Post Types and custom Taxonomies in a user friendly way. 6 Version: 1.1.1 46 Version: 1.1.15 7 7 Author: Graffino 8 8 Author URI: http://www.graffino.com/ … … 32 32 * @license http://www.gnu.org/licenses/gpl-2.0.html GPLv2 33 33 * @package Custom_Post_Types_Maker 34 * @version 1.1.1 434 * @version 1.1.15 35 35 */ 36 36 … … 62 62 $this->dir = plugins_url( '', __FILE__ ); 63 63 $this->path = plugin_dir_path( __FILE__ ); 64 $this->version = '1.1.1 4';64 $this->version = '1.1.15'; 65 65 66 66 // actions … … 891 891 <td class="label"> 892 892 <label for="cptm_tax_name"><span class="required">*</span> <?php _e( 'Custom Taxonomy Name', 'custom-post-type-maker' ); ?></label> 893 <p><?php _e( 'The taxonomy name . Used to retrieve custom taxonomy content.', 'custom-post-type-maker' ); ?></p>893 <p><?php _e( 'The taxonomy name (use lowercase only). Used to retrieve custom taxonomy content. Must be all in lower-case and without any spaces.', 'custom-post-type-maker' ); ?></p> 894 894 <p><?php _e( 'e.g. movies', 'custom-post-type-maker' ); ?></p> 895 895 </td> … … 1145 1145 // Update taxonomy meta values 1146 1146 if ( isset( $_POST['cptm_tax_name'] ) ) { 1147 update_post_meta( $post_id, 'cptm_tax_name', sanitize_text_field( str _replace( ' ', '', $_POST['cptm_tax_name']) ) );1147 update_post_meta( $post_id, 'cptm_tax_name', sanitize_text_field( strtolower( str_replace( ' ', '', $_POST['cptm_tax_name'] ) ) ) ); 1148 1148 } 1149 1149 -
custom-post-type-maker/trunk/readme.txt
r2531176 r2553487 4 4 Requires at least: 3.0.0 5 5 Tested up to: 5.7 6 Stable tag: 1.1.1 46 Stable tag: 1.1.15 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 66 66 67 67 == Changelog == 68 69 = 1.1.15 = 70 71 - Better sanitize taxonomy name as suggested by @ldeejay 72 73 = 1.1.14 = 74 75 - Compatibility with future version of WP 68 76 69 77 = 1.1.13 =
Note: See TracChangeset
for help on using the changeset viewer.