mirror of
https://git.code.sf.net/p/seeddms/code
synced 2026-01-13 12:57:59 +00:00
do not use $extconf twice
This commit is contained in:
parent
25adcfe5bd
commit
fad28ee31e
|
|
@ -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)) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user