Replace comparison with strict comparison

This commit is contained in:
Ben Goldsworthy 2021-02-21 12:07:27 +00:00
parent cc924372ba
commit c6330135d5

View file

@ -724,7 +724,7 @@ class MCI_Footnotes_Task {
// Correct hard links enabled status depending on alternative reference container enabled status:. // Correct hard links enabled status depending on alternative reference container enabled status:.
$l_str_script_mode = MCI_Footnotes_Settings::instance()->get( MCI_Footnotes_Settings::C_STR_FOOTNOTES_REFERENCE_CONTAINER_SCRIPT_MODE ); $l_str_script_mode = MCI_Footnotes_Settings::instance()->get( MCI_Footnotes_Settings::C_STR_FOOTNOTES_REFERENCE_CONTAINER_SCRIPT_MODE );
if ( $l_str_script_mode != 'jquery' ) { if ( 'jquery' !== $l_str_script_mode ) {
self::$a_bool_hard_links_enable = true; self::$a_bool_hard_links_enable = true;
} }