From 41e7c6eb930cb259e781c29653591591d9a35850 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Fri, 14 Nov 2025 10:33:12 +0100 Subject: [PATCH] do not use same variable for list of ext configurations and single configuration --- utils/Commands/ListextensionCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/Commands/ListextensionCommand.php b/utils/Commands/ListextensionCommand.php index 6e9fc1bd2..b6b7bcf28 100644 --- a/utils/Commands/ListextensionCommand.php +++ b/utils/Commands/ListextensionCommand.php @@ -60,8 +60,8 @@ class ListextensionCommand extends Command $enabled = 0; $disabled = 0; $haserror = 0; - $extconf = $extmgr->getExtensionConfiguration(); - foreach ($extconf as $extname=>$extconf) { + $extconfs = $extmgr->getExtensionConfiguration(); + foreach ($extconfs as $extname=>$extconf) { if (!$settings->extensionIsDisabled($extname)) { $enabled++; $output->writeln(sprintf(''.$outformat.'', '*', $extname, $extconf['version'], $extconf['releasedate']));