From e98e5b094b7ddf1070d0ab703527b61fe41e4004 Mon Sep 17 00:00:00 2001 From: markjaquith Date: Thu, 2 Dec 2010 04:36:00 +0000 Subject: [PATCH] Missed a s/default/standard/ in [16679]. props PeteMall. see #15582. git-svn-id: http://svn.automattic.com/wordpress/trunk@16682 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/post.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/post.php b/wp-includes/post.php index 51b14b4c8f..398613713a 100644 --- a/wp-includes/post.php +++ b/wp-includes/post.php @@ -5078,7 +5078,7 @@ function get_post_format_strings() { function get_post_format_string( $slug ) { $strings = get_post_format_strings(); if ( !$slug ) - return $strings['default']; + return $strings['standard']; else return ( isset( $strings[$slug] ) ) ? $strings[$slug] : ''; }