We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80cb08f commit 55f68b2Copy full SHA for 55f68b2
administrator/components/com_finder/src/Controller/IndexerController.php
@@ -344,9 +344,9 @@ public function debug()
344
try {
345
// Import the finder plugins.
346
class_alias(DebugAdapter::class, Adapter::class);
347
- $plugin = Factory::getApplication()->bootPlugin($this->app->input->get('plugin'), 'finder');
+ $plugin = $this->app->bootPlugin($this->app->getInput()->get('plugin'), 'finder');
348
$plugin->setIndexer(new DebugIndexer());
349
- $plugin->debug($this->app->input->get('id'));
+ $plugin->debug($this->app->getInput()->get('id'));
350
351
$output = '';
352
0 commit comments