From e4dfced5451e6bbdc600e0859e47614cae961f03 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 19 Dec 2020 20:45:05 +0000 Subject: [PATCH] Twenty Ten: Correct `$post_title` variable name in `loop-attachment.php`. Follow-up to [45609] / #47632. Props sabernhardt. Fixes #52121. Built from https://develop.svn.wordpress.org/trunk@49840 git-svn-id: http://core.svn.wordpress.org/trunk@49559 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentyten/loop-attachment.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-content/themes/twentyten/loop-attachment.php b/wp-content/themes/twentyten/loop-attachment.php index 45c4618cc0..50622f768d 100644 --- a/wp-content/themes/twentyten/loop-attachment.php +++ b/wp-content/themes/twentyten/loop-attachment.php @@ -24,7 +24,7 @@ if ( have_posts() ) { post_parent ) ) : /* translators: %s: Post title. */ - $post_tile = sprintf( __( 'Go to %s', 'twentyten' ), strip_tags( get_the_title( $post->post_parent ) ) ); + $post_title = sprintf( __( 'Go to %s', 'twentyten' ), strip_tags( get_the_title( $post->post_parent ) ) ); ?>