From 4478a23f7a43af0f02f5134a23745585fd319c3c Mon Sep 17 00:00:00 2001 From: Paweł Kłopotek-Główczewski Date: Mon, 17 Dec 2018 21:10:44 +0100 Subject: Change comparison operator to assignment, which it should be. --- system/helpers/html_helper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'system/helpers/html_helper.php') diff --git a/system/helpers/html_helper.php b/system/helpers/html_helper.php index 3a478bf26..cd430d7fe 100644 --- a/system/helpers/html_helper.php +++ b/system/helpers/html_helper.php @@ -370,7 +370,7 @@ if ( ! function_exists('meta')) { if ($meta['type'] === 'equiv') { - $meta['type'] === 'http-equiv'; + $meta['type'] = 'http-equiv'; } elseif ( ! in_array($meta['type'], $allowed_types, TRUE)) { -- cgit v1.2.3-24-g4f1b