Making WordPress.org

Changeset 6925


Ignore:
Timestamp:
03/25/2018 01:51:35 AM (7 years ago)
Author:
iandunn
Message:

WP15: Print WP15 event names for manual verification.

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  
    109109
    110110    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 );
    112116
    113117        echo "\nIgnored these events. Double check for false-negatives.\n\n";
     118        print_r( $other_names );
    114119
    115         sort(    $names );
    116         print_r( $names );
     120        echo "\nWP events. Double check for false-positives.\n\n";
     121        print_r( $wp15_names );
    117122    }
    118123
Note: See TracChangeset for help on using the changeset viewer.