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
This commit is contained in:
Mark Jaquith 2010-12-02 04:36:00 +00:00
parent d9ae425dc2
commit 4b8e7b1c5b
1 changed files with 1 additions and 1 deletions

View File

@ -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] : '';
}