Changeset 25927
- Timestamp:
- 10/26/2013 03:06:17 AM (12 years ago)
- Location:
- branches/3.7/src/wp-admin
- Files:
-
- 3 edited
-
about.php (modified) (1 diff)
-
credits.php (modified) (1 diff)
-
freedoms.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/3.7/src/wp-admin/about.php
r25886 r25927 22 22 <h1><?php printf( __( 'Welcome to WordPress %s' ), $display_version ); ?></h1> 23 23 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>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> 25 25 26 26 <div class="wp-badge"><?php printf( __( 'Version %s' ), $display_version ); ?></div> -
branches/3.7/src/wp-admin/credits.php
r25832 r25927 82 82 <h1><?php printf( __( 'Welcome to WordPress %s' ), $display_version ); ?></h1> 83 83 84 <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>84 <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> 85 85 86 86 <div class="wp-badge"><?php printf( __( 'Version %s' ), $display_version ); ?></div> -
branches/3.7/src/wp-admin/freedoms.php
r25832 r25927 20 20 <h1><?php printf( __( 'Welcome to WordPress %s' ), $display_version ); ?></h1> 21 21 22 <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>22 <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> 23 23 24 24 <div class="wp-badge"><?php printf( __( 'Version %s' ), $display_version ); ?></div>
Note: See TracChangeset
for help on using the changeset viewer.