Add missing periods to strings introduced in [30333].
props DrewAPicture. see #30264. Built from https://develop.svn.wordpress.org/trunk@30596 git-svn-id: http://core.svn.wordpress.org/trunk@30586 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a899bbaee7
commit
0a8b72866e
|
@ -2807,11 +2807,11 @@ function wp_ajax_destroy_sessions() {
|
||||||
*/
|
*/
|
||||||
if ( is_string( $keep ) ) {
|
if ( is_string( $keep ) ) {
|
||||||
$sessions->destroy_others( $keep );
|
$sessions->destroy_others( $keep );
|
||||||
$message = __( 'You are now logged out everywhere else' );
|
$message = __( 'You are now logged out everywhere else.' );
|
||||||
} else {
|
} else {
|
||||||
$sessions->destroy_all();
|
$sessions->destroy_all();
|
||||||
/* translators: 1: User's display name. */
|
/* translators: 1: User's display name. */
|
||||||
$message = sprintf( __( '%s has been logged out' ), $user->display_name );
|
$message = sprintf( __( '%s has been logged out.' ), $user->display_name );
|
||||||
}
|
}
|
||||||
|
|
||||||
wp_send_json_success( array(
|
wp_send_json_success( array(
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.1-beta2-30595';
|
$wp_version = '4.1-beta2-30596';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue