In wp_title() fix a 7 year old typo.

Props joelerr.
Fixes #34879.
Built from https://develop.svn.wordpress.org/trunk@36540


git-svn-id: http://core.svn.wordpress.org/trunk@36507 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling 2016-02-16 22:28:26 +00:00
parent 3f3fe5a7ed
commit 8a52014638
2 changed files with 2 additions and 2 deletions

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

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.5-alpha-36539';
$wp_version = '4.5-alpha-36540';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.