Changeset 12162 for sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-customizations/inc/cli/class-stats.php
- Timestamp:
- 10/31/2022 03:52:38 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-customizations/inc/cli/class-stats.php
r12126 r12162 649 649 $commenters = array(); 650 650 $status_counter = array( 651 'changesrequested' => 0, 651 652 'current' => 0, 652 653 'current_from_rejection' => 0, … … 654 655 'rejected' => 0, 655 656 'old' => 0, 657 'unknown' => 0, 656 658 'waiting' => 0, 657 659 ); … … 754 756 } 755 757 } 756 $status_counter[ $translation->status ] ++; 758 759 $status_counter[ $translation->status ?: 'unknown' ] ++; 757 760 } 758 761
Note: See TracChangeset
for help on using the changeset viewer.