From 061e5ff77d902ebfb9c5f058fd5d053abdf096a8 Mon Sep 17 00:00:00 2001 From: azaozz Date: Tue, 15 Dec 2009 04:55:47 +0000 Subject: [PATCH] Fix typos, props aldenta, fixes #11440 git-svn-id: http://svn.automattic.com/wordpress/trunk@12400 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/post-thumbnail-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/post-thumbnail-template.php b/wp-includes/post-thumbnail-template.php index baf1bce62..5f5904053 100644 --- a/wp-includes/post-thumbnail-template.php +++ b/wp-includes/post-thumbnail-template.php @@ -19,7 +19,7 @@ */ function has_post_thumbnail( $post_id = NULL ) { global $id; - $post_id = ( NULL === $post_id ) ? $id : $popost-thumbnailst_id; + $post_id = ( NULL === $post_id ) ? $id : $post_id; return !! get_post_thumbnail_id( $post_id ); }