Changeset 54897
- Timestamp:
- 11/29/2022 09:28:01 PM (23 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/update-core.php
r54839 r54897 403 403 404 404 if ( $can_set_update_option ) { 405 echo '<br >';405 echo '<br />'; 406 406 printf( 407 407 '<a href="%s" class="core-auto-update-settings-link core-auto-update-settings-link-disable">%s</a>', … … 414 414 415 415 if ( $can_set_update_option ) { 416 echo '<br >';416 echo '<br />'; 417 417 printf( 418 418 '<a href="%s" class="core-auto-update-settings-link core-auto-update-settings-link-enable">%s</a>', … … 536 536 537 537 if ( ! $compatible_php && current_user_can( 'update_php' ) ) { 538 $compat .= '<br >' . __( 'This update does not 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 not 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 not 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 not 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.