From c6330135d57e1ba6da1e5e6159919c77929a23d5 Mon Sep 17 00:00:00 2001 From: Rumperuu Date: Sun, 21 Feb 2021 12:07:27 +0000 Subject: [PATCH] Replace comparison with strict comparison --- class/task.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/class/task.php b/class/task.php index c4ee258..4659959 100644 --- a/class/task.php +++ b/class/task.php @@ -724,7 +724,7 @@ class MCI_Footnotes_Task { // 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 ); - if ( $l_str_script_mode != 'jquery' ) { + if ( 'jquery' !== $l_str_script_mode ) { self::$a_bool_hard_links_enable = true; }