diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Wallabag/CoreBundle/Command/InstallCommand.php | 7 |
1 files changed, 4 insertions, 3 deletions
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 | |||
73 | 73 | ||
74 | $fulfilled = true; | 74 | $fulfilled = true; |
75 | 75 | ||
76 | $label = '<comment>PDO Drivers</comment>'; | 76 | $label = '<comment>PDO Driver</comment>'; |
77 | $status = '<info>OK!</info>'; | 77 | $status = '<info>OK!</info>'; |
78 | $help = ''; | 78 | $help = ''; |
79 | if (!(extension_loaded('pdo_sqlite') || extension_loaded('pdo_mysql') || extension_loaded('pdo_pgsql'))) { | 79 | |
80 | if (!extension_loaded($this->getContainer()->getParameter('database_driver'))) { | ||
80 | $fulfilled = false; | 81 | $fulfilled = false; |
81 | $status = '<error>ERROR!</error>'; | 82 | $status = '<error>ERROR!</error>'; |
82 | $help = 'Needs one of sqlite, mysql or pgsql PDO drivers'; | 83 | $help = 'Database driver "'.$this->getContainer()->getParameter('database_driver').'" is not installed.'; |
83 | } | 84 | } |
84 | 85 | ||
85 | $rows = []; | 86 | $rows = []; |