Skip to content

Commit

Permalink
Merge pull request #272 from shreesh-webkul/gli-645
Browse files Browse the repository at this point in the history
Changed default DB prefix to qlo_
  • Loading branch information
rohit053 committed Jan 31, 2022
2 parents e9cfdb2 + 971f76b commit c434589
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions install/controllers/http/database.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public function processNextStep()
$this->session->database_password = trim(Tools::getValue('dbPassword'));
$this->session->database_prefix = trim(Tools::getValue('db_prefix'));
$this->session->database_clear = Tools::getValue('database_clear');

$this->session->rewrite_engine = Tools::getValue('rewrite_engine');
}

Expand All @@ -80,7 +80,7 @@ public function validate()
if (count($this->errors)) {
return false;
}

if (!isset($this->session->database_engine)) {
$this->session->database_engine = $this->model_database->getBestEngine($this->session->database_server, $this->session->database_name, $this->session->database_login, $this->session->database_password);
}
Expand Down Expand Up @@ -154,7 +154,7 @@ public function display()
$this->database_login = 'root';
$this->database_password = '';
$this->database_engine = 'InnoDB';
$this->database_prefix = 'ps_';
$this->database_prefix = 'qlo_';
}

$this->database_clear = true;
Expand Down

0 comments on commit c434589

Please sign in to comment.