Skip to content

Commit b480553

Browse files
committed
Merge pull request #959 from Vinai/ascii-dash-in-error
Replace UTF8 'en dash' with minus in error message
2 parents ad1f373 + a603459 commit b480553

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/Magento/Framework/Module/Plugin/DbStatusValidator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public function aroundDispatch(
5252
if ($errors) {
5353
$formattedErrors = $this->formatErrors($errors);
5454
throw new \Magento\Framework\Module\Exception(
55-
'Please update your database: Run "php f index.php update" from the Magento root/setup directory.'
55+
'Please update your database: Run "php -f index.php update" from the Magento root/setup directory.'
5656
. PHP_EOL . 'The following modules are outdated:' . PHP_EOL . implode(PHP_EOL, $formattedErrors)
5757
);
5858
} else {

0 commit comments

Comments
 (0)