mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-11-27 10:00:41 +00:00
do not use same variable for list of ext configurations and single configuration
This commit is contained in:
parent
a4307a4a2c
commit
41e7c6eb93
|
|
@ -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('<ext>'.$outformat.'</ext>', '*', $extname, $extconf['version'], $extconf['releasedate']));
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user