From 53f1aea983321c6ab961fb8b9371c0620d951b1e Mon Sep 17 00:00:00 2001 From: Ben Word Date: Mon, 2 Jan 2012 10:29:57 -0700 Subject: [PATCH] fixes #201 - post entry meta should use date format from options --- functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions.php b/functions.php index 9e27764..a7c067b 100644 --- a/functions.php +++ b/functions.php @@ -79,7 +79,7 @@ function roots_register_sidebars() { foreach( $sidebars as $sidebar ) { register_sidebar( array( - 'id'=> 'roots-' . strtolower( $sidebar ), + 'id'=> 'roots-' . strtolower( $sidebar ), 'name' => __( $sidebar, 'roots' ), 'description' => __( $sidebar, 'roots' ), 'before_widget' => '
', @@ -95,7 +95,7 @@ add_action('widgets_init', 'roots_register_sidebars'); // return post entry meta information function roots_entry_meta() { - echo ''; + echo ''; echo ''; }