Skip to content

Commit

Permalink
Twenty Twelve: s/"/'/ in array notation, props JarretC. Fixes #21587.
Browse files Browse the repository at this point in the history
git-svn-id: http://core.svn.wordpress.org/trunk@21524 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
lancewillett committed Aug 15, 2012
1 parent 411714a commit 718184b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wp-content/themes/twentytwelve/functions.php
Expand Up @@ -185,7 +185,7 @@ function twentytwelve_widgets_init() {
'id' => 'sidebar-1',
'description' => __( 'Appears on posts and pages except the optional Homepage template, which uses its own set of widgets', 'twentytwelve' ),
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => "</aside>",
'after_widget' => '</aside>',
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
) );
Expand All @@ -195,7 +195,7 @@ function twentytwelve_widgets_init() {
'id' => 'sidebar-home',
'description' => __( 'Appears when using the optional homepage template with a page set as Static Front Page', 'twentytwelve' ),
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => "</aside>",
'after_widget' => '</aside>',
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
) );
Expand Down

0 comments on commit 718184b

Please sign in to comment.