From 85d3ca79405eca2759eb9c6345e399742097a0a9 Mon Sep 17 00:00:00 2001 From: Tammie Lister Date: Sun, 23 Oct 2016 11:06:31 +0000 Subject: [PATCH] Twenty Seventeen: Remove whitelisting comments for PHP_Codesniffer Some comments to whitelist PHP_CodeSniffer errors were left in the theme as on GitHub it intergrated with Travis testing. Those are now removed in this patch. props davidakennedy Built from https://develop.svn.wordpress.org/trunk@38872 git-svn-id: http://core.svn.wordpress.org/trunk@38815 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- .../twentyseventeen/components/header/site-branding.php | 2 +- wp-content/themes/twentyseventeen/inc/template-tags.php | 6 +++--- wp-includes/version.php | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/wp-content/themes/twentyseventeen/components/header/site-branding.php b/wp-content/themes/twentyseventeen/components/header/site-branding.php index d588cfaae0..ffa668d15e 100644 --- a/wp-content/themes/twentyseventeen/components/header/site-branding.php +++ b/wp-content/themes/twentyseventeen/components/header/site-branding.php @@ -23,7 +23,7 @@ -

+

diff --git a/wp-content/themes/twentyseventeen/inc/template-tags.php b/wp-content/themes/twentyseventeen/inc/template-tags.php index 98733ff2a7..9848fd59b3 100644 --- a/wp-content/themes/twentyseventeen/inc/template-tags.php +++ b/wp-content/themes/twentyseventeen/inc/template-tags.php @@ -22,7 +22,7 @@ function twentyseventeen_posted_on() { ); // Finally, let's write all of this to the page. - echo '' . twentyseventeen_time_link() . ' ' . $byline . ''; // WPCS: XSS OK. + echo '' . twentyseventeen_time_link() . ' ' . $byline . ''; } endif; @@ -76,11 +76,11 @@ function twentyseventeen_entry_footer() { // Make sure there's more than one category before displaying. if ( $categories_list && twentyseventeen_categorized_blog() ) { - echo '' . twentyseventeen_get_svg( array( 'icon' => 'folder-open' ) ) . '' . __( 'Categories', 'twentyseventeen' ) . '' . $categories_list . ''; // WPCS: XSS OK. + echo '' . twentyseventeen_get_svg( array( 'icon' => 'folder-open' ) ) . '' . __( 'Categories', 'twentyseventeen' ) . '' . $categories_list . ''; } if ( $tags_list ) { - echo '' . twentyseventeen_get_svg( array( 'icon' => 'hashtag' ) ) . '' . __( 'Tags', 'twentyseventeen' ) . '' . $tags_list . ''; // WPCS: XSS OK. + echo '' . twentyseventeen_get_svg( array( 'icon' => 'hashtag' ) ) . '' . __( 'Tags', 'twentyseventeen' ) . '' . $tags_list . ''; } echo ''; diff --git a/wp-includes/version.php b/wp-includes/version.php index 438253708d..38c5a8eaf9 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-alpha-38871'; +$wp_version = '4.7-alpha-38872'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.