Changeset 6925
- Timestamp:
- 03/25/2018 01:51:35 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wp15.wordpress.net/public_html/content/plugins/wp15-meetup-events/wp15-meetup-events.php
r6914 r6925 109 109 110 110 if ( 'cli' == php_sapi_name() ) { 111 $names = wp_list_pluck( $other_events, 'name' ); 111 $wp15_names = wp_list_pluck( $wp15_events, 'name' ); 112 $other_names = wp_list_pluck( $other_events, 'name' ); 113 114 sort( $wp15_names ); 115 sort( $other_names ); 112 116 113 117 echo "\nIgnored these events. Double check for false-negatives.\n\n"; 118 print_r( $other_names ); 114 119 115 sort( $names );116 print_r( $ names );120 echo "\nWP events. Double check for false-positives.\n\n"; 121 print_r( $wp15_names ); 117 122 } 118 123
Note: See TracChangeset
for help on using the changeset viewer.