From c80ed70337577a499eb0394bd3a969a458ea40b2 Mon Sep 17 00:00:00 2001 From: "Dominik Schilling (ocean90)" Date: Tue, 16 Feb 2016 22:27:05 +0000 Subject: [PATCH] In `wp_title()` fix a 7 year old typo. Props joelerr. Fixes #34879. git-svn-id: https://develop.svn.wordpress.org/trunk@36540 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/general-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/general-template.php b/src/wp-includes/general-template.php index 79ff616e27..3946d13158 100644 --- a/src/wp-includes/general-template.php +++ b/src/wp-includes/general-template.php @@ -1012,7 +1012,7 @@ function wp_title( $sep = '»', $display = true, $seplocation = '' ) { $search = get_query_var( 's' ); $title = ''; - $t_sep = '%WP_TITILE_SEP%'; // Temporary separator, for accurate flipping, if necessary + $t_sep = '%WP_TITLE_SEP%'; // Temporary separator, for accurate flipping, if necessary // If there is a post if ( is_single() || ( is_home() && ! is_front_page() ) || ( is_page() && ! is_front_page() ) ) {