Changeset 8066 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-requirements.php
- Timestamp:
- 01/10/2019 06:05:24 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-requirements.php
r7389 r8066 9 9 10 10 namespace WordPressdotorg\MainTheme; 11 use WordPressdotorg\API\Serve_Happy\RECOMMENDED_PHP; 12 use WordPressdotorg\API\Serve_Happy\MINIMUM_PHP; 11 13 12 14 $GLOBALS['menu_items'] = [ … … 44 46 <?php 45 47 /* translators: 1: URL to PHP; 2: PHP Version */ 46 printf( wp_kses_post( __( '<a href="%1$s">PHP</a> version %2$s or greater.', 'wporg' ) ), esc_url( 'http://www.php.net/' ), '7.2');48 printf( wp_kses_post( __( '<a href="%1$s">PHP</a> version %2$s or greater.', 'wporg' ) ), esc_url( 'http://www.php.net/' ), RECOMMENDED_PHP ); 47 49 ?> 48 50 </li> … … 73 75 /* translators: 1: PHP Version including; 2: MySQL Version */ 74 76 wp_kses_post( __( 'Note: If you are in a legacy environment where you only have older PHP or MySQL versions, WordPress also works with PHP %1$s+ and MySQL %2$s+, but these versions have reached official End Of Life and as such <strong>may expose your site to security vulnerabilities</strong>.', 'wporg' ) ), 75 '5.2.4',77 MINIMUM_PHP, 76 78 '5.0' 77 79 );
Note: See TracChangeset
for help on using the changeset viewer.