Replace comparison with strict comparison
This commit is contained in:
parent
cc924372ba
commit
c6330135d5
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue