diff --git a/views/bootstrap/class.Info.php b/views/bootstrap/class.Info.php
index 88c118c5f..7a4b4991d 100644
--- a/views/bootstrap/class.Info.php
+++ b/views/bootstrap/class.Info.php
@@ -106,6 +106,7 @@ class SeedDMS_View_Info extends SeedDMS_Theme_Style {
echo "\n\n
\n";
echo "PHP | ".phpversion()." |
\n";
echo "Path to php.ini | ".php_ini_loaded_file()." |
\n";
+ echo "Timezone | ".date_default_timezone_get()." (Current date/time on server is ".getLongReadableDate(time()).") |
\n";
echo "\n\n";
$this->contentHeading(getMLText("installed_php_extensions"));
diff --git a/views/bootstrap/class.Settings.php b/views/bootstrap/class.Settings.php
index 8c762ec68..8fa0a5ab7 100644
--- a/views/bootstrap/class.Settings.php
+++ b/views/bootstrap/class.Settings.php
@@ -331,7 +331,7 @@ class SeedDMS_View_Settings extends SeedDMS_Theme_Style {
params['extmgr'];
header('Content-Type: application/javascript; charset=UTF-8');
@@ -382,7 +382,15 @@ console.log($(event.currentTarget).data('target').substring(1));
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'];