From b4dbe1907d34ad178cf635267afbc7d2a32709db Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 22 Mar 2013 18:58:55 +0000 Subject: [PATCH] Fix order of in_array() parameters. props lancewillett. see #23570. git-svn-id: http://core.svn.wordpress.org/trunk@23789 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/post-formats.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/post-formats.php b/wp-includes/post-formats.php index 39eaa1a645..ec68932745 100644 --- a/wp-includes/post-formats.php +++ b/wp-includes/post-formats.php @@ -446,7 +446,7 @@ function get_the_url( $id = 0 ) { if ( empty( $post ) ) return ''; - if ( in_array( get_post_format( $post->ID, array( 'link', 'quote' ) ) ) ) { + if ( in_array( get_post_format( $post->ID ), array( 'link', 'quote' ) ) ) { $meta = get_post_format_meta( $post->ID ); if ( ! empty( $meta['url'] ) ) return apply_filters( 'get_the_url', esc_url_raw( $meta['url'] ), $post );