Skip to content

Commit 5b2e20f

Browse files
committed
Install: special chars in the db-password fix
1 parent a9f3153 commit 5b2e20f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

public_html/install/controller/pages/install.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function main()
5656

5757
if ($this->request->is_POST()){
5858
//this data becomes escaped. We need to write it into file as constant. Revert back into as-is view
59-
$this->request->post['password'] = html_entity_decode($this->request->post['password']);
59+
$this->request->post['db_password'] = html_entity_decode($this->request->post['db_password']);
6060
if($this->_validate()) {
6161
$this->session->data['install_step_data'] = $this->request->post;
6262
redirect(HTTP_SERVER.'index.php?rt=install&runlevel=1');

0 commit comments

Comments
 (0)