From 8d8b4214c593ffbb4e914abc565f8ad56ab305ab Mon Sep 17 00:00:00 2001 From: Lance Willett Date: Wed, 8 Aug 2012 16:59:15 +0000 Subject: [PATCH] Twenty Twelve: cleanup up extra space in functions.php git-svn-id: https://develop.svn.wordpress.org/trunk@21479 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-content/themes/twentytwelve/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-content/themes/twentytwelve/functions.php b/wp-content/themes/twentytwelve/functions.php index 0a7f25c3b5..9379f9310b 100644 --- a/wp-content/themes/twentytwelve/functions.php +++ b/wp-content/themes/twentytwelve/functions.php @@ -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; }