X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FCoreBundle%2FCommand%2FInstallCommand.php;h=6665f4b5b7d503ad9cab5eb81ea1bd2da3995673;hb=2ff626a451cb0a2fd942a25007a8452bf1e0866e;hp=7c3d1c523f95fdd2f41451355e43cef131b3f8eb;hpb=0e49487bb0a004d526eb41e7d3fb44b566441e34;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/CoreBundle/Command/InstallCommand.php b/src/Wallabag/CoreBundle/Command/InstallCommand.php index 7c3d1c52..6665f4b5 100644 --- a/src/Wallabag/CoreBundle/Command/InstallCommand.php +++ b/src/Wallabag/CoreBundle/Command/InstallCommand.php @@ -73,13 +73,14 @@ class InstallCommand extends ContainerAwareCommand $fulfilled = true; - $label = 'PDO Drivers'; + $label = 'PDO Driver'; $status = 'OK!'; $help = ''; - if (!(extension_loaded('pdo_sqlite') || extension_loaded('pdo_mysql') || extension_loaded('pdo_pgsql'))) { + + if (!extension_loaded($this->getContainer()->getParameter('database_driver'))) { $fulfilled = false; $status = 'ERROR!'; - $help = 'Needs one of sqlite, mysql or pgsql PDO drivers'; + $help = 'Database driver "'.$this->getContainer()->getParameter('database_driver').'" is not installed.'; } $rows = [];