Make WordPress Core


Ignore:
Timestamp:
07/12/2020 10:53:36 AM (4 years ago)
Author:
SergeyBiryukov
Message:

Upgrade/Install: Use is_php_version_compatible() and is_wp_version_compatible() in plugin and theme requirement checks.

Follow-up to [48390].

Props afragen.
See #9757.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-plugin-installer-skin.php

    r48447 r48448  
    215215        $table .= '<th>' . esc_html( __( 'Uploaded' ) ) . '</th></tr>';
    216216
    217         $is_same_plugin = true; // Let's consider only these rows
     217        $is_same_plugin = true; // Let's consider only these rows.
     218
    218219        foreach ( $rows as $field => $label ) {
    219220            $old_value = ! empty( $current_plugin_data[ $field ] ) ? $current_plugin_data[ $field ] : '-';
     
    249250        $blocked_message .= '<ul class="ul-disc">';
    250251
    251         if (
    252             ! empty( $this->upgrader->new_plugin_data['RequiresPHP'] ) &&
    253             version_compare( phpversion(), $this->upgrader->new_plugin_data['RequiresPHP'], '<' )
     252        if ( ! empty( $this->upgrader->new_plugin_data['RequiresPHP'] )
     253            && ! is_php_version_compatible( $this->upgrader->new_plugin_data['RequiresPHP'] )
    254254        ) {
    255255            $error = sprintf(
     
    264264        }
    265265
    266         if (
    267             ! empty( $this->upgrader->new_plugin_data['RequiresWP'] ) &&
    268             version_compare( $GLOBALS['wp_version'], $this->upgrader->new_plugin_data['RequiresWP'], '<' )
     266        if ( ! empty( $this->upgrader->new_plugin_data['RequiresWP'] )
     267            && ! is_wp_version_compatible( $this->upgrader->new_plugin_data['RequiresWP'] )
    269268        ) {
    270269            $error = sprintf(
Note: See TracChangeset for help on using the changeset viewer.