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
This commit is contained in:
Dominik Schilling (ocean90) 2016-02-16 22:27:05 +00:00
parent 8535f40cf8
commit c80ed70337

View File

@ -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() ) ) {