Update comparisons to resolve the strict comparison warnings. See https://github.com/Automattic/_s/issues/784
This commit is contained in:
parent
d02cc4fa70
commit
af0a4749be
5 changed files with 6 additions and 6 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue