From 08e82331b3396a3cd42366b0cf1721646b2372ee Mon Sep 17 00:00:00 2001 From: Cameron Date: Sat, 12 Mar 2022 12:21:00 -0800 Subject: [PATCH] Issue #4700 - removed bad reference to cache pref. --- e107_plugins/linkwords/e_parse.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/e107_plugins/linkwords/e_parse.php b/e107_plugins/linkwords/e_parse.php index 8ea6fef15..8b222d8b0 100644 --- a/e107_plugins/linkwords/e_parse.php +++ b/e107_plugins/linkwords/e_parse.php @@ -86,12 +86,10 @@ class linkwords_parse $this->area_opts = (array) varset($pref['lw_context_visibility']); $this->utfMode = (strtolower(CHARSET) === 'utf-8') ? 'u' : ''; $this->lwAjaxEnabled = varset($pref['lw_ajax_enable'],0); - $this->cache = (int) varset($pref['lw_cache'],false); // See whether they should be active on this page - if not, no point doing anything! if(e_ADMIN_AREA === true && empty($_POST['runLinkwordTest'])) { - $this->cache(false); return; }