From d2f44a309960c2a1deb60b30b6997b69ddca08d9 Mon Sep 17 00:00:00 2001 From: rica-carv Date: Wed, 10 Mar 2021 19:36:45 +0000 Subject: [PATCH] Wrong method mySQLServerInfo (?) in line 3399 gave error on plugin install with mysql dependecies... Wrong method mySQLServerInfo (?) in line 3399 gave error on plugin install with mysql dependecies... --- e107_handlers/plugin_class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107_handlers/plugin_class.php b/e107_handlers/plugin_class.php index 3cfb391b3..5ec8517ec 100644 --- a/e107_handlers/plugin_class.php +++ b/e107_handlers/plugin_class.php @@ -3396,7 +3396,7 @@ class e107plugin } break; case 'mysql': // all should be lowercase - if(isset($dv['@attributes']['min_version']) && (version_compare($dv['@attributes']['min_version'], $db->mySqlServerInfo(), '<=') === false) + if(isset($dv['@attributes']['min_version']) && (version_compare($dv['@attributes']['min_version'], $db->getServerInfo(), '<=') === false) ) { $error[] = EPL_ADLAN_75 . $dv['@attributes']['min_version'];