diff options
author | Andrey Andreev <narf@devilix.net> | 2019-01-02 14:46:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-02 14:46:38 +0100 |
commit | aef7781fab2dbc4438f819f7be3ab31bd1a8d8fb (patch) | |
tree | 7d97350066b144a9d0631b0bf78763c17c345c7e /system/helpers | |
parent | 07cb9fd45f94d928c0f6dcf73f702808e1e03f62 (diff) | |
parent | 4478a23f7a43af0f02f5134a23745585fd319c3c (diff) |
[ci skip] Merge pull request #5657 from pawelkg/fix_html_helper
Fix html helper
Diffstat (limited to 'system/helpers')
-rw-r--r-- | system/helpers/html_helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/helpers/html_helper.php b/system/helpers/html_helper.php index ca9e7f923..8b06e4406 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)) { |