Changes in branches/3.7/src/wp-admin/about.php [25987:25886]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.7/src/wp-admin/about.php
r25987 r25886 22 22 <h1><?php printf( __( 'Welcome to WordPress %s' ), $display_version ); ?></h1> 23 23 24 <div class="about-text"><?php echo str_replace( '3.7', $display_version, __( 'Thank you for updating to WordPress 3.7! You might not notice a thing, and we’re okay with that.' )); ?></div>24 <div class="about-text"><?php printf( __( 'Thank you for updating to WordPress 3.7! You might not notice a thing, and we’re okay with that.' ), $display_version ); ?></div> 25 25 26 26 <div class="wp-badge"><?php printf( __( 'Version %s' ), $display_version ); ?></div> … … 35 35 </a> 36 36 </h2> 37 38 <div class="changelog point-releases">39 <h3><?php echo _n( 'Maintenance Release', 'Maintenance Releases', 1 ); ?></h3>40 <p><?php printf( _n( '<strong>Version %1$s</strong> addressed %2$s bug.',41 '<strong>Version %1$s</strong> addressed %2$s bugs.', 11 ), '3.7.1', number_format_i18n( 11 ) ); ?>42 <?php printf( __( 'For more information, see <a href="%s">the release notes</a>.' ), 'http://codex.wordpress.org/Version_3.7.1' ); ?>43 </p>44 </div>45 37 46 38 <div class="changelog"> … … 70 62 require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; 71 63 $updater = new WP_Automatic_Updater; 72 $can_auto_update = wp_http_supports( array( 'ssl' )) && $updater->should_update( 'core', $future_minor_update, ABSPATH );64 $can_auto_update = wp_http_supports( 'ssl' ) && $updater->should_update( 'core', $future_minor_update, ABSPATH ); 73 65 74 66 if ( $can_auto_update ) {
Note: See TracChangeset
for help on using the changeset viewer.