// Check if at least one table with same prefix already exists in new installer

This commit is contained in:
rMalie
2012-01-05 14:28:10 +00:00
parent 656756464f
commit 6c71b52b6b
5 changed files with 93 additions and 2 deletions
+4
View File
@@ -66,6 +66,10 @@ class InstallModelDatabase extends InstallAbstractModel
case 0:
if (!Db::checkEncoding($server, $login, $password))
$errors[] = $this->language->l('Cannot convert database data to utf-8');
// Check if a table with same prefix already exists
if (Db::hasTableWithSamePrefix($server, $login, $password, $database, $prefix))
$errors[] = $this->language->l('At least one table with same prefix was already found, please change your prefix or drop your database');
break;
case 1: