Skip to content

Commit

Permalink
drone again ..
Browse files Browse the repository at this point in the history
  • Loading branch information
zero-24 committed Sep 3, 2019
1 parent 3b986b8 commit 40c45d6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ function admin_postinstall_joomla40checks_condition()
}

// Check whether we have a MariaDB version string and extract the proper version from it
if ($serverType == 'mysql' &&
preg_match('/^(?:5\.5\.5-)?(mariadb-)?(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)/i', $serverVersion, $versionParts))
if ($serverType == 'mysql'
&& preg_match('/^(?:5\.5\.5-)?(mariadb-)?(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)/i', $serverVersion, $versionParts))
{
$dbVersion = $versionParts['major'] . '.' . $versionParts['minor'] . '.' . $versionParts['patch'];

Expand Down

0 comments on commit 40c45d6

Please sign in to comment.