Skip to content

Commit

Permalink
Merge pull request #21 from mambax7/master
Browse files Browse the repository at this point in the history
  • Loading branch information
mambax7 authored Aug 13, 2021
2 parents 1b92e49 + 2a8c032 commit b52886a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion class/Common/ServerStats.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public static function getServerStats()
$gdlib = \function_exists('gd_info') ? '<span style="color: #008000;">' . \constant('CO_' . $moduleDirNameUpper . '_GDON') . '</span>' : '<span style="color: #ff0000;">' . \constant('CO_' . $moduleDirNameUpper . '_GDOFF') . '</span>';
$html .= '<li>' . \constant('CO_' . $moduleDirNameUpper . '_GDLIBSTATUS') . $gdlib;
if (\function_exists('gd_info')) {
if (true === ($gdlib = gd_info())) {
if (true == ($gdlib = gd_info())) {
$html .= '<li>' . \constant('CO_' . $moduleDirNameUpper . '_GDLIBVERSION') . '<b>' . $gdlib['GD Version'] . '</b>';
}
}
Expand Down
5 changes: 5 additions & 0 deletions docs/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<h5>3.1.1 Final [2021-08-13]</h5> Dev: XOOPS 2.5.11, PHP 7.4.22, PHP 8.0.9
<hr>
- added missing index.html in root issues #19 (alain01/mamba)


<h5>3.1 Final [2021-08-10]</h5> Dev: XOOPS 2.5.11, PHP 7.4.22, PHP 8.0.9
<hr>
- added test data (mamba)
Expand Down
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<script>history.go(-1);</script>
4 changes: 2 additions & 2 deletions xoops_version.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@

// ------------------- Informations ------------------- //
$modversion = [
'version' => 3.1,
'version' => '3.1.1',
'module_status' => 'Final',
'release_date' => '2021/08/10',
'release_date' => '2021/08/13',
'name' => _MI_XLANGUAGE_NAME,
'description' => _MI_XLANGUAGE_DESC,
'official' => 1, //1 indicates official XOOPS module supported by XOOPS Dev Team, 0 means 3rd party supported
Expand Down

0 comments on commit b52886a

Please sign in to comment.