do not use $extconf twice

This commit is contained in:
Uwe Steinmann 2026-01-05 16:32:26 +01:00
parent 25adcfe5bd
commit fad28ee31e

View File

@ -242,7 +242,7 @@ class SeedDMS_View_ExtensionMgr extends SeedDMS_Theme_Style {
$httproot = $this->params['httproot'];
$extmgr = $this->params['extmgr'];
$extdir = $this->params['extdir'];
$extconf = $extmgr->getExtensionConfiguration();
$extconfall = $extmgr->getExtensionConfiguration();
echo "<table id=\"extensionlist\" class=\"table\">\n";
print "<thead>\n<tr>\n";
@ -251,7 +251,7 @@ class SeedDMS_View_ExtensionMgr extends SeedDMS_Theme_Style {
print "<th>".getMLText('version')."</th>\n";
print "<th></th>\n";
print "</tr></thead><tbody>\n";
foreach($extconf as $extname=>$extconf) {
foreach($extconfall as $extname=>$extconf) {
$check = $extmgr->checkExtensionByDir($extname);
$class = "";
if(!$settings->extensionIsDisabled($extname)) {