From 9edf7af6b4445aac96d73a237a3f4072795c801d Mon Sep 17 00:00:00 2001 From: markjaquith Date: Thu, 2 Dec 2010 21:24:41 +0000 Subject: [PATCH] Another s/default/standard/. see #15582 git-svn-id: http://svn.automattic.com/wordpress/trunk@16693 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/post-template.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/post-template.php b/wp-includes/post-template.php index 2de34761f..4aa48c74e 100644 --- a/wp-includes/post-template.php +++ b/wp-includes/post-template.php @@ -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);