From 0a8b72866e106cc02dce182066531c55e438f376 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 28 Nov 2014 06:26:22 +0000 Subject: [PATCH] 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 --- wp-admin/includes/ajax-actions.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/includes/ajax-actions.php b/wp-admin/includes/ajax-actions.php index 90982d3302..5dcbd5ad67 100644 --- a/wp-admin/includes/ajax-actions.php +++ b/wp-admin/includes/ajax-actions.php @@ -2807,11 +2807,11 @@ function wp_ajax_destroy_sessions() { */ if ( is_string( $keep ) ) { $sessions->destroy_others( $keep ); - $message = __( 'You are now logged out everywhere else' ); + $message = __( 'You are now logged out everywhere else.' ); } else { $sessions->destroy_all(); /* 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( diff --git a/wp-includes/version.php b/wp-includes/version.php index 205a611a51..80f24c0af8 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @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.