From 4b8e7b1c5be40eff9a7f1c38bf1ace37351312ce Mon Sep 17 00:00:00 2001 From: Mark Jaquith 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: https://develop.svn.wordpress.org/trunk@16682 602fd350-edb4-49c9-b593-d223f7449a82 --- 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] : ''; }