Merge branch 'seeddms-5.1.x' into seeddms-6.0.x

This commit is contained in:
Uwe Steinmann 2025-04-01 12:51:57 +02:00
commit fb59582a56
2 changed files with 11 additions and 2 deletions

View File

@ -106,6 +106,7 @@ class SeedDMS_View_Info extends SeedDMS_Theme_Style {
echo "</tr>\n</thead>\n<tbody>\n";
echo "<tr><td>PHP</td><td>".phpversion()."</td></tr>\n";
echo "<tr><td>Path to php.ini</td><td>".php_ini_loaded_file()."</td></tr>\n";
echo "<tr><td>Timezone</td><td>".date_default_timezone_get()." (Current date/time on server is ".getLongReadableDate(time()).")</td></tr>\n";
echo "</tbody>\n</table>\n";
$this->contentHeading(getMLText("installed_php_extensions"));

View File

@ -331,7 +331,7 @@ class SeedDMS_View_Settings extends SeedDMS_Theme_Style {
<?php
} /* }}} */
function js() { /* {{{ */
public function js() { /* {{{ */
$extmgr = $this->params['extmgr'];
header('Content-Type: application/javascript; charset=UTF-8');
@ -382,7 +382,15 @@ console.log($(event.currentTarget).data('target').substring(1));
<?php
} /* }}} */
function show() { /* {{{ */
public function extension() { /* {{{ */
$dms = $this->params['dms'];
$user = $this->params['user'];
$settings = $this->params['settings'];
$extmgr = $this->params['extmgr'];
} /* }}} */
public function show() { /* {{{ */
$dms = $this->params['dms'];
$user = $this->params['user'];
$users = $this->params['allusers'];