Changeset 53840
- Timestamp:
- 08/05/2022 06:10:04 AM (3 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/plugin-install.php
r53839 r53840 828 828 /* translators: %s: URL to WordPress Updates screen. */ 829 829 ' ' . __( '<a href="%s" target="_parent">Click here to update WordPress</a>.' ), 830 self_admin_url( 'update-core.php')830 esc_url( self_admin_url( 'update-core.php' ) ) 831 831 ); 832 832 } -
trunk/src/wp-admin/update-core.php
r53839 r53840 687 687 /* translators: 1: URL to WordPress Updates screen, 2: URL to Update PHP page. */ 688 688 __( '<a href="%1$s">Please update WordPress</a>, and then <a href="%2$s">learn more about updating PHP</a>.' ), 689 self_admin_url( 'update-core.php'),689 esc_url( self_admin_url( 'update-core.php' ) ), 690 690 esc_url( wp_get_update_php_url() ) 691 691 ); … … 700 700 /* translators: %s: URL to WordPress Updates screen. */ 701 701 __( '<a href="%s">Please update WordPress</a>.' ), 702 self_admin_url( 'update-core.php')702 esc_url( self_admin_url( 'update-core.php' ) ) 703 703 ); 704 704 } elseif ( current_user_can( 'update_php' ) ) { … … 721 721 /* translators: %s: URL to WordPress Updates screen. */ 722 722 __( '<a href="%s">Please update WordPress</a>.' ), 723 self_admin_url( 'update-core.php')723 esc_url( self_admin_url( 'update-core.php' ) ) 724 724 ); 725 725 }
Note: See TracChangeset
for help on using the changeset viewer.