- Added missing column server_kurzbz to system/dbupdate_3.3.php column

check
- Changed the server column position in the extension manager view
- Removed public method getInstalledExtensions from application/models/system/Extensions_model.php
- Fixes, comments and indentations in application/libraries/ExtensionsLib.php
This commit is contained in:
Paolo
2021-09-15 18:08:08 +02:00
parent 22eae288cb
commit 063a3fa524
4 changed files with 79 additions and 77 deletions
@@ -103,12 +103,12 @@
<tr>
<th>Name</th>
<th>Description</th>
<th>Server</th>
<th>Version</th>
<th>Licence</th>
<th>URL</th>
<th>Minimum required Core version</th>
<th>Dependes on (extensions)</th>
<th>Server</th>
<th>Enabled</th>
<th>&nbsp;</th>
</tr>
@@ -140,12 +140,12 @@
$tableRow,
$extension->name,
$extension->description,
$extension->server_kurzbz,
$extension->version,
$extension->license,
$extension->url,
$extension->core_version,
count($extension->dependencies) == 0 ? 'None' : json_encode($extension->dependencies),
$extension->server_kurzbz,
$extension->extension_id,
$extension->enabled === true ? 'checked' : '',
$extension->extension_id
@@ -171,3 +171,4 @@
</body>
<?php $this->load->view('templates/footer'); ?>