// Prefix is not required anymore in installer

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@13385 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
rMalie
2012-02-16 10:29:20 +00:00
parent 62843db383
commit 27c3473887
+1 -1
View File
@@ -53,7 +53,7 @@ class InstallModelDatabase extends InstallAbstractModel
if (!$login)
$errors[] = $this->language->l('You must enter a database login');
if (!$prefix || !Validate::isTablePrefix($prefix))
if ($prefix && !Validate::isTablePrefix($prefix))
$errors[] = $this->language->l('Tables prefix is invalid');
if (!Validate::isMySQLEngine($engine))