From f88204d0a4742948103da479d6c5f62eff7a7f90 Mon Sep 17 00:00:00 2001 From: obenland Date: Tue, 3 Dec 2013 19:44:56 -0800 Subject: [PATCH] _s: Add closing brackets to avoid fatal error. Props @gatespace for intial patch. Fixes #355. --- archive.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/archive.php b/archive.php index 26add063..abb074d9 100644 --- a/archive.php +++ b/archive.php @@ -39,10 +39,10 @@ get_header(); ?> printf( __( 'Day: %s', '_s' ), '' . get_the_date() . '' ); elseif ( is_month() ) : - printf( __( 'Month: %s', '_s' ), '' . get_the_date( _x( 'F Y', 'monthly archives date format', '_s' ) . '' ); + printf( __( 'Month: %s', '_s' ), '' . get_the_date( _x( 'F Y', 'monthly archives date format', '_s' ) ) . '' ); elseif ( is_year() ) : - printf( __( 'Year: %s', '_s' ), '' . get_the_date( _x( 'Y', 'yearly archives date format', '_s' ) . '' ); + printf( __( 'Year: %s', '_s' ), '' . get_the_date( _x( 'Y', 'yearly archives date format', '_s' ) ) . '' ); elseif ( is_tax( 'post_format', 'post-format-aside' ) ) : _e( 'Asides', '_s' );