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
This commit is contained in:
markjaquith 2010-12-02 04:36:00 +00:00
parent a1b12eb6e5
commit e98e5b094b
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] : '';
}