Skip to content

Commit

Permalink
WordPress 4.4.18
Browse files Browse the repository at this point in the history
  • Loading branch information
pento committed Mar 13, 2019
1 parent f797452 commit b82d705
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions wp-admin/about.php
Expand Up @@ -50,6 +50,26 @@

<div class="changelog point-releases">
<h3><?php _e( 'Maintenance and Security Releases' ); ?> </h3>
<p>
<?php
printf(
/* translators: %s: WordPress version number */
__( '<strong>Version %s</strong> addressed some security issues.' ),
'4.4.18'
);
?>
<?php
printf(
/* translators: %s: HelpHub URL */
__( 'For more information, see <a href="%s">the release notes</a>.' ),
sprintf(
/* translators: %s: WordPress version */
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
sanitize_title( '4.4.18' )
)
);
?>
</p>
<p>
<?php
/* translators: %s: WordPress version number */
Expand Down
2 changes: 1 addition & 1 deletion wp-includes/version.php
Expand Up @@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.4.17';
$wp_version = '4.4.18';

/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
Expand Down

0 comments on commit b82d705

Please sign in to comment.