Skip to content

Commit b52886a

Browse files
authored
Merge pull request #21 from mambax7/master
#19
2 parents 1b92e49 + 2a8c032 commit b52886a

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

class/Common/ServerStats.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public static function getServerStats()
4949
$gdlib = \function_exists('gd_info') ? '<span style="color: #008000;">' . \constant('CO_' . $moduleDirNameUpper . '_GDON') . '</span>' : '<span style="color: #ff0000;">' . \constant('CO_' . $moduleDirNameUpper . '_GDOFF') . '</span>';
5050
$html .= '<li>' . \constant('CO_' . $moduleDirNameUpper . '_GDLIBSTATUS') . $gdlib;
5151
if (\function_exists('gd_info')) {
52-
if (true === ($gdlib = gd_info())) {
52+
if (true == ($gdlib = gd_info())) {
5353
$html .= '<li>' . \constant('CO_' . $moduleDirNameUpper . '_GDLIBVERSION') . '<b>' . $gdlib['GD Version'] . '</b>';
5454
}
5555
}

docs/changelog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
<h5>3.1.1 Final [2021-08-13]</h5> Dev: XOOPS 2.5.11, PHP 7.4.22, PHP 8.0.9
2+
<hr>
3+
- added missing index.html in root issues #19 (alain01/mamba)
4+
5+
16
<h5>3.1 Final [2021-08-10]</h5> Dev: XOOPS 2.5.11, PHP 7.4.22, PHP 8.0.9
27
<hr>
38
- added test data (mamba)

index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<script>history.go(-1);</script>

xoops_version.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929

3030
// ------------------- Informations ------------------- //
3131
$modversion = [
32-
'version' => 3.1,
32+
'version' => '3.1.1',
3333
'module_status' => 'Final',
34-
'release_date' => '2021/08/10',
34+
'release_date' => '2021/08/13',
3535
'name' => _MI_XLANGUAGE_NAME,
3636
'description' => _MI_XLANGUAGE_DESC,
3737
'official' => 1, //1 indicates official XOOPS module supported by XOOPS Dev Team, 0 means 3rd party supported

0 commit comments

Comments
 (0)