From 3ef1fd59a341b0af96a69c76e692fcdcc7d0c21f Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Thu, 13 Nov 2008 00:01:03 +0000 Subject: [PATCH] Grammar fix from Speedboxer. fixes #8073 git-svn-id: https://develop.svn.wordpress.org/trunk@9651 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/post.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/includes/post.php b/wp-admin/includes/post.php index 03ffae40a0..62ed101302 100644 --- a/wp-admin/includes/post.php +++ b/wp-admin/includes/post.php @@ -1040,7 +1040,7 @@ function post_preview() { $post_ID = (int) $_POST['post_ID']; if ( $post_ID < 1 ) - wp_die( __('Preview not available. Please save as draft first.') ); + wp_die( __('Preview not available. Please save as a draft first.') ); if ( isset($_POST['catslist']) ) $_POST['post_category'] = explode(",", $_POST['catslist']);