Update comparisons to resolve the strict comparison warnings. See https://github.com/Automattic/_s/issues/784

This commit is contained in:
Grant Palin 2015-08-07 09:59:26 -07:00
parent d02cc4fa70
commit af0a4749be
5 changed files with 6 additions and 6 deletions

View file

@ -47,7 +47,7 @@ function _s_header_style() {
// If no custom options for text are set, let's bail
// get_header_textcolor() options: HEADER_TEXTCOLOR is default, hide text (returns 'blank') or any hex value.
if ( HEADER_TEXTCOLOR == $header_text_color ) {
if ( HEADER_TEXTCOLOR === $header_text_color ) {
return;
}
@ -56,7 +56,7 @@ function _s_header_style() {
<style type="text/css">
<?php
// Has the text been hidden?
if ( 'blank' == $header_text_color ) :
if ( 'blank' === $header_text_color ) :
?>
.site-title,
.site-description {