Twenty Twelve: cleanup up extra space in functions.php

git-svn-id: https://develop.svn.wordpress.org/trunk@21479 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Lance Willett 2012-08-08 16:59:15 +00:00
parent da5b33b5a5
commit 8d8b4214c5
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ function twentytwelve_wp_title( $title, $sep ) {
// Add a page number if necessary.
if ( $paged >= 2 || $page >= 2 )
$title = "$title $sep " . sprintf( __( 'Page %s', 'twentytwelve' ), max( $paged, $page ) );
$title = "$title $sep " . sprintf( __( 'Page %s', 'twentytwelve' ), max( $paged, $page ) );
return $title;
}