Browse Source

Installer: Show NOT OK if none of the database extensions is installed (#9594, #9604)

dependabot/npm_and_yarn/eslint-plugin-unicorn-56.0.0
Philip Weir 10 months ago
committed by GitHub
parent
commit
3af7ba1b23
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 3
      installer/check.php

3
installer/check.php

@ -171,7 +171,8 @@ foreach ($RCI->supported_dbs as $database => $ext) {
echo '<br />';
}
if (empty($found_db_driver)) {
$RCI->failures++;
echo '<br />';
$RCI->fail('Database extensions', 'See above');
}
?>

Loading…
Cancel
Save