diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-02-24 14:49:50 +0100 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-02-24 14:49:51 +0100 |
commit | f2fcb65b44607d49481700d28706ee3d30561dc1 (patch) | |
tree | 34234108d8e08185a41925e6800b26e86882c6bc | |
parent | f83125d2f5cea2c850b7f31ef1ad0a50c6fefdd9 (diff) | |
download | wallabag-f2fcb65b44607d49481700d28706ee3d30561dc1.tar.gz wallabag-f2fcb65b44607d49481700d28706ee3d30561dc1.tar.zst wallabag-f2fcb65b44607d49481700d28706ee3d30561dc1.zip |
Fix wrong variable name
> The variable $requirement does not exist.
-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 9383628c..771b3c5a 100644 --- a/src/Wallabag/CoreBundle/Command/InstallCommand.php +++ b/src/Wallabag/CoreBundle/Command/InstallCommand.php | |||
@@ -94,7 +94,7 @@ class InstallCommand extends ContainerAwareCommand | |||
94 | } else { | 94 | } else { |
95 | $fulfilled = false; | 95 | $fulfilled = false; |
96 | $status = '<error>ERROR!</error>'; | 96 | $status = '<error>ERROR!</error>'; |
97 | $help = 'You need the '.$requirement.' function activated'; | 97 | $help = 'You need the '.$functionRequired.' function activated'; |
98 | } | 98 | } |
99 | 99 | ||
100 | $rows[] = array($label, $status, $help); | 100 | $rows[] = array($label, $status, $help); |