From 7e0794bd97dc7440dcb56833b4c73923116c0032 Mon Sep 17 00:00:00 2001 From: chrisdavenport Date: Fri, 23 Dec 2016 17:02:48 +0000 Subject: [PATCH] Load system plugins in Smart Search indexer --- cli/finder_indexer.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cli/finder_indexer.php b/cli/finder_indexer.php index 25e16c2792f78..01854b2edf197 100644 --- a/cli/finder_indexer.php +++ b/cli/finder_indexer.php @@ -52,6 +52,7 @@ // System configuration. $config = new JConfig; +define('JDEBUG', $config->debug); // Configure error reporting to maximum for CLI output. error_reporting(E_ALL); @@ -167,7 +168,8 @@ private function index() // Reset the indexer state. FinderIndexer::resetState(); - // Import the finder plugins. + // Import the plugins. + JPluginHelper::importPlugin('system'); JPluginHelper::importPlugin('finder'); // Starting Indexer.