Pink trailing whites.

git-svn-id: http://svn.automattic.com/wordpress/trunk@16900 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan
2010-12-13 21:21:50 +00:00
parent 93fb27623f
commit 3949ce12d0
35 changed files with 106 additions and 106 deletions

View File

@@ -2318,7 +2318,7 @@ function wp_get_single_post($postid = 0, $mode = OBJECT) {
$post = get_post($postid, $mode);
if (
if (
( OBJECT == $mode && empty( $post->ID ) ) ||
( OBJECT != $mode && empty( $post['ID'] ) )
)
@@ -3827,7 +3827,7 @@ function wp_get_attachment_url( $post_id = 0 ) {
if ( 'attachment' != $post->post_type || empty( $url ) )
return false;
return $url;
}