Changeset 12519 for sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/class-customizations.php
- Timestamp:
- 03/30/2023 03:54:08 AM (20 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/class-customizations.php
r12518 r12519 406 406 // Affix the reason it's disabled. 407 407 $reason = Template::get_close_reason( $post ); 408 if ( $reason ) {408 if ( $reason != _x( 'Unknown', 'unknown close reason', 'wporg-plugins' ) ) { 409 409 $post_states['reason'] = $reason; 410 410 } … … 414 414 // Affix the reason it's closed. 415 415 $reason = Template::get_close_reason( $post ); 416 if ( $reason ) {416 if ( $reason != _x( 'Unknown', 'unknown close reason', 'wporg-plugins' ) ) { 417 417 $post_states['reason'] = $reason; 418 418 }
Note: See TracChangeset
for help on using the changeset viewer.