Making WordPress.org

Changeset 6074


Ignore:
Timestamp:
11/02/2017 05:39:54 AM (7 years ago)
Author:
dd32
Message:

Plugin Directory: Fix a reversal of parameters in [6073] after a last-minute fumble.
See #2644

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/cli/class-import.php

    r6073 r6074  
    9191            ( !isset( $headers->Version ) || $headers->Version != get_post_meta( $plugin->ID, 'version', true ) ) ||
    9292            $plugin->post_modified == '0000-00-00 00:00:00' ||
    93             ( $svn_changed_tags && in_array( $svn_changed_tags, ( $stable_tag ?: 'trunk' ), true ) )
     93            ( $svn_changed_tags && in_array( ( $stable_tag ?: 'trunk' ), $svn_changed_tags, true ) )
    9494        ) {
    9595            $plugin->post_modified = $plugin->post_modified_gmt = current_time( 'mysql' );
Note: See TracChangeset for help on using the changeset viewer.