Skip to content

Commit

Permalink
updates for XOOPS 2.5.11 Stable
Browse files Browse the repository at this point in the history
  • Loading branch information
ggoffy committed Feb 2, 2024
1 parent d4d3dc2 commit 784f3d6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion class/Common/VersionChecks.php
Expand Up @@ -53,7 +53,7 @@ public static function checkVerXoops(\XoopsModule $module = null, $requiredVer =
}
$success = true;

if (\version_compare($currentVer, $requiredVer, '<')) {
if ($module->versionCompare($currentVer, $requiredVer, '<')) {
$success = false;
$module->setErrors(\sprintf(\constant('CO_' . $moduleDirNameUpper . '_ERROR_BAD_XOOPS'), $requiredVer, $currentVer));
}
Expand Down
1 change: 1 addition & 0 deletions docs/changelog.txt
Expand Up @@ -3,6 +3,7 @@
===================================================================
- updates smarty 3 (goffy)
- fixed smarty errors (mamba/goffy)
- updates for XOOPS 2.5.11 Stable (goffy)

===================================================================
2023/03/20 Version 1.5.1 RC1
Expand Down
2 changes: 1 addition & 1 deletion xoops_version.php
Expand Up @@ -44,7 +44,7 @@
'manual' => 'link to manual file',
'manual_file' => \XOOPS_URL . '/modules/wggithub/docs/install.txt',
'min_php' => '7.4',
'min_xoops' => '2.5.11 RC1',
'min_xoops' => '2.5.11 Stable',
'min_admin' => '1.2',
'min_db' => ['mysql' => '5.5', 'mysqli' => '5.6'],
'image' => 'assets/images/logoModule.png',
Expand Down

0 comments on commit 784f3d6

Please sign in to comment.