diff options
Diffstat (limited to 'src/Wallabag')
-rw-r--r-- | src/Wallabag/CoreBundle/Command/InstallCommand.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Command/InstallCommand.php b/src/Wallabag/CoreBundle/Command/InstallCommand.php index cd816149..035eb865 100644 --- a/src/Wallabag/CoreBundle/Command/InstallCommand.php +++ b/src/Wallabag/CoreBundle/Command/InstallCommand.php | |||
@@ -96,7 +96,7 @@ class InstallCommand extends ContainerAwareCommand | |||
96 | try { | 96 | try { |
97 | $this->getContainer()->get('doctrine')->getManager()->getConnection()->connect(); | 97 | $this->getContainer()->get('doctrine')->getManager()->getConnection()->connect(); |
98 | } catch (\Exception $e) { | 98 | } catch (\Exception $e) { |
99 | if (false === strpos($e->getMessage(), "Unknown database")) { | 99 | if (false === strpos($e->getMessage(), 'Unknown database')) { |
100 | $fulfilled = false; | 100 | $fulfilled = false; |
101 | $status = '<error>ERROR!</error>'; | 101 | $status = '<error>ERROR!</error>'; |
102 | $help = 'Can\'t connect to the database: '.$e->getMessage(); | 102 | $help = 'Can\'t connect to the database: '.$e->getMessage(); |