From 93c504a57adeb79d15ebd244c942287f2c0bc6bd Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 19 Dec 2020 20:43:49 +0000 Subject: [PATCH] Twenty Ten: Correct `$post_title` variable name in `loop-attachment.php`. Follow-up to [45609] / #47632. Props sabernhardt. Fixes #52121. git-svn-id: https://develop.svn.wordpress.org/trunk@49840 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-content/themes/twentyten/loop-attachment.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-content/themes/twentyten/loop-attachment.php b/src/wp-content/themes/twentyten/loop-attachment.php index 45c4618cc0..50622f768d 100644 --- a/src/wp-content/themes/twentyten/loop-attachment.php +++ b/src/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 ) ) ); ?>