Another s/default/standard/. see #15582

git-svn-id: http://svn.automattic.com/wordpress/trunk@16693 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
markjaquith 2010-12-02 21:24:41 +00:00
parent 1df7f1be64
commit 9edf7af6b4
1 changed files with 2 additions and 2 deletions

View File

@ -334,7 +334,7 @@ function get_post_class( $class = '', $post_id = null ) {
if ( $post_format && !is_wp_error($post_format) )
$classes[] = 'format-' . sanitize_html_class( $post_format );
else
$classes[] = 'format-default';
$classes[] = 'format-standard';
// post requires password
if ( post_password_required($post->ID) )
@ -435,7 +435,7 @@ function get_body_class( $class = '' ) {
if ( $post_format && !is_wp_error($post_format) )
$classes[] = 'single-format-' . sanitize_html_class( $post_format );
else
$classes[] = 'single-format-default';
$classes[] = 'single-format-standard';
if ( is_attachment() ) {
$mime_type = get_post_mime_type($post_id);