We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0e5bd8 commit c1b30b7Copy full SHA for c1b30b7
setup/src/Magento/Setup/Model/Installer.php
@@ -768,7 +768,7 @@ public function checkDatabaseTablePrefix($prefix)
768
{
769
//The table prefix should contain only letters (a-z), numbers (0-9) or underscores (_);
770
// the first character should be a letter.
771
- if ($prefix !== '' && !preg_match('/^([a-zA-Z])([[:alnum:]]+)([[:alnum:]_]+)$/', $prefix)) {
+ if ($prefix !== '' && !preg_match('/^([a-zA-Z])([[:alnum:]_]+)$/', $prefix)) {
772
throw new \InvalidArgumentException('Please correct the table prefix format.');
773
}
774
0 commit comments