Help/About: Restore placeholder for WordPress version in tagline on About, Credits, and Freedoms pages to include minor versions.
Props desrosj, mukesh27. Fixes #46408. git-svn-id: https://develop.svn.wordpress.org/trunk@45338 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
040a58ff57
commit
dc8c8dd878
@ -24,7 +24,15 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
|
||||
?>
|
||||
</h1>
|
||||
|
||||
<p class="about-text"><?php printf( __( 'Congratulations on updating to WordPress 5.2! This update makes it easier than ever to fix your site if something goes wrong.' ), $display_version ); ?></p>
|
||||
<p class="about-text">
|
||||
<?php
|
||||
printf(
|
||||
/* translators: %s: The current WordPress version number */
|
||||
__( 'Congratulations on updating to WordPress %s! This update makes it easier than ever to fix your site if something goes wrong.' ),
|
||||
$display_version
|
||||
);
|
||||
?>
|
||||
</p>
|
||||
|
||||
<div class="wp-badge">
|
||||
<?php
|
||||
|
@ -25,7 +25,15 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
|
||||
?>
|
||||
</h1>
|
||||
|
||||
<p class="about-text"><?php printf( __( 'Congratulations on updating to WordPress 5.2! This update makes it easier than ever to fix your site if something goes wrong.' ), $display_version ); ?></p>
|
||||
<p class="about-text">
|
||||
<?php
|
||||
printf(
|
||||
/* translators: %s: The current WordPress version number */
|
||||
__( 'Congratulations on updating to WordPress %s! This update makes it easier than ever to fix your site if something goes wrong.' ),
|
||||
$display_version
|
||||
);
|
||||
?>
|
||||
</p>
|
||||
|
||||
<div class="wp-badge">
|
||||
<?php
|
||||
|
@ -39,7 +39,15 @@ if ( $is_privacy_notice ) {
|
||||
?>
|
||||
</h1>
|
||||
|
||||
<p class="about-text"><?php printf( __( 'Congratulations on updating to WordPress 5.2! This update makes it easier than ever to fix your site if something goes wrong.' ), $display_version ); ?></p>
|
||||
<p class="about-text">
|
||||
<?php
|
||||
printf(
|
||||
/* translators: %s: The current WordPress version number */
|
||||
__( 'Congratulations on updating to WordPress %s! This update makes it easier than ever to fix your site if something goes wrong.' ),
|
||||
$display_version
|
||||
);
|
||||
?>
|
||||
</p>
|
||||
|
||||
<div class="wp-badge">
|
||||
<?php
|
||||
|
Loading…
Reference in New Issue
Block a user