Changeset 52978 for trunk/src/wp-admin/update-core.php
- Timestamp:
- 03/22/2022 04:23:32 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/update-core.php
r52947 r52978 536 536 537 537 if ( ! $compatible_php && current_user_can( 'update_php' ) ) { 538 $compat .= '<br>' . __( 'This update does n’t work with your version of PHP.' ) . ' ';538 $compat .= '<br>' . __( 'This update does not work with your version of PHP.' ) . ' '; 539 539 $compat .= sprintf( 540 540 /* translators: %s: URL to Update PHP page. */ … … 682 682 683 683 if ( ! $compatible_wp && ! $compatible_php ) { 684 $compat .= '<br>' . __( 'This update does n’t work with your versions of WordPress and PHP.' ) . ' ';684 $compat .= '<br>' . __( 'This update does not work with your versions of WordPress and PHP.' ) . ' '; 685 685 if ( current_user_can( 'update_core' ) && current_user_can( 'update_php' ) ) { 686 686 $compat .= sprintf( … … 716 716 } 717 717 } elseif ( ! $compatible_wp ) { 718 $compat .= '<br>' . __( 'This update does n’t work with your version of WordPress.' ) . ' ';718 $compat .= '<br>' . __( 'This update does not work with your version of WordPress.' ) . ' '; 719 719 if ( current_user_can( 'update_core' ) ) { 720 720 $compat .= sprintf( … … 725 725 } 726 726 } elseif ( ! $compatible_php ) { 727 $compat .= '<br>' . __( 'This update does n’t work with your version of PHP.' ) . ' ';727 $compat .= '<br>' . __( 'This update does not work with your version of PHP.' ) . ' '; 728 728 if ( current_user_can( 'update_php' ) ) { 729 729 $compat .= sprintf(
Note: See TracChangeset
for help on using the changeset viewer.