Skip to content

Commit 55f68b2

Browse files
authored
[5.0] replace deprecated access of input property (#41215)
* [5.0] replace deprecated access of input property * replace Factory::getApplication()
1 parent 80cb08f commit 55f68b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

administrator/components/com_finder/src/Controller/IndexerController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -344,9 +344,9 @@ public function debug()
344344
try {
345345
// Import the finder plugins.
346346
class_alias(DebugAdapter::class, Adapter::class);
347-
$plugin = Factory::getApplication()->bootPlugin($this->app->input->get('plugin'), 'finder');
347+
$plugin = $this->app->bootPlugin($this->app->getInput()->get('plugin'), 'finder');
348348
$plugin->setIndexer(new DebugIndexer());
349-
$plugin->debug($this->app->input->get('id'));
349+
$plugin->debug($this->app->getInput()->get('id'));
350350

351351
$output = '';
352352

0 commit comments

Comments
 (0)