Changeset 2284534
- Timestamp:
- 04/15/2020 11:34:32 PM (6 years ago)
- Location:
- adjust-admin-categories
- Files:
-
- 3 edited
- 10 copied
-
tags/2.2.3 (copied) (copied from adjust-admin-categories/trunk)
-
tags/2.2.3/adjust-admin-categories.php (copied) (copied from adjust-admin-categories/trunk/adjust-admin-categories.php) (1 diff)
-
tags/2.2.3/admin (copied) (copied from adjust-admin-categories/trunk/admin)
-
tags/2.2.3/css (copied) (copied from adjust-admin-categories/trunk/css)
-
tags/2.2.3/includes (copied) (copied from adjust-admin-categories/trunk/includes)
-
tags/2.2.3/includes/class-category-checklist.php (copied) (copied from adjust-admin-categories/trunk/includes/class-category-checklist.php) (3 diffs)
-
tags/2.2.3/js (copied) (copied from adjust-admin-categories/trunk/js)
-
tags/2.2.3/languages (copied) (copied from adjust-admin-categories/trunk/languages)
-
tags/2.2.3/readme.txt (copied) (copied from adjust-admin-categories/trunk/readme.txt) (2 diffs)
-
tags/2.2.3/uninstall.php (copied) (copied from adjust-admin-categories/trunk/uninstall.php)
-
trunk/adjust-admin-categories.php (modified) (1 diff)
-
trunk/includes/class-category-checklist.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
adjust-admin-categories/tags/2.2.3/adjust-admin-categories.php
r2284531 r2284534 5 5 Description: Installing this plugin allows you to adjust the behavior of the area below the posts screen categoryand custom taxonomy box. 6 6 Author: Nakashima Masahiro 7 Version: 2.2. 27 Version: 2.2.3 8 8 Author URI: https://www.kigurumi.asia 9 9 Text Domain: aac 10 10 Domain Path: /languages/ 11 11 */ 12 define( 'AAC_VERSION', '2.2. 2' );12 define( 'AAC_VERSION', '2.2.3' ); 13 13 define( 'AAC_PLUGIN_BASENAME', plugin_basename( __FILE__ ) ); 14 14 define( 'AAC_PLUGIN_NAME', trim( dirname( AAC_PLUGIN_BASENAME ), '/' ) ); -
adjust-admin-categories/tags/2.2.3/includes/class-category-checklist.php
r2284533 r2284534 57 57 if( $category->parent == 0 || $this->category_has_children( $category->term_id, $category->taxonomy ) ) { 58 58 $output .= "\n<li id='{$taxonomy}-{$category->term_id}'$class>" . 59 '<label class="selectit">' . esc_html( apply_filters( 'the_category', $category->name ) ) . '</label>';59 '<b>' . esc_html( apply_filters( 'the_category', $category->name ) ) . '</b>'; 60 60 }else{ 61 61 /** This filter is documented in wp-includes/category-template.php */ … … 64 64 checked( in_array( $category->term_id, $args['selected_cats'] ), true, false ) . 65 65 disabled( empty( $args['disabled'] ), false, false ) . ' /> ' . 66 esc_html( apply_filters( 'the_category', $category->name ) ) . '</label>'; 66 esc_html( apply_filters( 'the_category', $category->name ) ) . '</label>'; 67 67 } 68 68 }else{ … … 72 72 checked( in_array( $category->term_id, $args['selected_cats'] ), true, false ) . 73 73 disabled( empty( $args['disabled'] ), false, false ) . ' /> ' . 74 esc_html( apply_filters( 'the_category', $category->name ) ) . '</label>'; 74 esc_html( apply_filters( 'the_category', $category->name ) ) . '</label>'; 75 75 } 76 76 } -
adjust-admin-categories/tags/2.2.3/readme.txt
r2284532 r2284534 1 1 === Adjust Admin Categories === 2 Contributors: kanakogi, saillmone, katanyan, ishiiyoshinori, nashiko 2 Contributors: kanakogi, saillmone, katanyan, ishiiyoshinori, nashiko, twinpictures 3 3 Donate link: http://www.amazon.co.jp/registry/wishlist/2TUGZOYJW8T4T/?_encoding=UTF8&camp=247&creative=7399&linkCode=ur2&tag=wpccc-22 4 4 Tags: admin, category 5 5 Requires at least: 3.0 or higher 6 Tested up to: 5. 2.37 Stable tag: 2.2. 26 Tested up to: 5.4.0 7 Stable tag: 2.2.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 33 33 34 34 == Changelog == 35 36 **2.2.3 - 15 April 2020** 37 Non selectable parent categories are bold and no longer wrapped in a clickable label element 38 35 39 **2.2.0 - 29 June 2018** 36 40 Bug fix. -
adjust-admin-categories/trunk/adjust-admin-categories.php
r2153356 r2284534 5 5 Description: Installing this plugin allows you to adjust the behavior of the area below the posts screen categoryand custom taxonomy box. 6 6 Author: Nakashima Masahiro 7 Version: 2.2. 27 Version: 2.2.3 8 8 Author URI: https://www.kigurumi.asia 9 9 Text Domain: aac 10 10 Domain Path: /languages/ 11 11 */ 12 define( 'AAC_VERSION', '2.2. 2' );12 define( 'AAC_VERSION', '2.2.3' ); 13 13 define( 'AAC_PLUGIN_BASENAME', plugin_basename( __FILE__ ) ); 14 14 define( 'AAC_PLUGIN_NAME', trim( dirname( AAC_PLUGIN_BASENAME ), '/' ) ); -
adjust-admin-categories/trunk/includes/class-category-checklist.php
r1574968 r2284534 57 57 if( $category->parent == 0 || $this->category_has_children( $category->term_id, $category->taxonomy ) ) { 58 58 $output .= "\n<li id='{$taxonomy}-{$category->term_id}'$class>" . 59 '<label class="selectit">' . esc_html( apply_filters( 'the_category', $category->name ) ) . '</label>';59 '<b>' . esc_html( apply_filters( 'the_category', $category->name ) ) . '</b>'; 60 60 }else{ 61 61 /** This filter is documented in wp-includes/category-template.php */ … … 64 64 checked( in_array( $category->term_id, $args['selected_cats'] ), true, false ) . 65 65 disabled( empty( $args['disabled'] ), false, false ) . ' /> ' . 66 esc_html( apply_filters( 'the_category', $category->name ) ) . '</label>'; 66 esc_html( apply_filters( 'the_category', $category->name ) ) . '</label>'; 67 67 } 68 68 }else{ … … 72 72 checked( in_array( $category->term_id, $args['selected_cats'] ), true, false ) . 73 73 disabled( empty( $args['disabled'] ), false, false ) . ' /> ' . 74 esc_html( apply_filters( 'the_category', $category->name ) ) . '</label>'; 74 esc_html( apply_filters( 'the_category', $category->name ) ) . '</label>'; 75 75 } 76 76 } -
adjust-admin-categories/trunk/readme.txt
r2153356 r2284534 1 1 === Adjust Admin Categories === 2 Contributors: kanakogi, saillmone, katanyan, ishiiyoshinori, nashiko 2 Contributors: kanakogi, saillmone, katanyan, ishiiyoshinori, nashiko, twinpictures 3 3 Donate link: http://www.amazon.co.jp/registry/wishlist/2TUGZOYJW8T4T/?_encoding=UTF8&camp=247&creative=7399&linkCode=ur2&tag=wpccc-22 4 4 Tags: admin, category 5 5 Requires at least: 3.0 or higher 6 Tested up to: 5. 2.37 Stable tag: 2.2. 26 Tested up to: 5.4.0 7 Stable tag: 2.2.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 33 33 34 34 == Changelog == 35 36 **2.2.3 - 15 April 2020** 37 Non selectable parent categories are bold and no longer wrapped in a clickable label element 38 35 39 **2.2.0 - 29 June 2018** 36 40 Bug fix.
Note: See TracChangeset
for help on using the changeset viewer.