Skip to content
Snippets Groups Projects
Commit 5d9a3b6a authored by Jansen's avatar Jansen
Browse files

Fixed #3 XSS in register

parent d5703941
Branches
No related merge requests found
......@@ -25,7 +25,7 @@ class RegisterController extends BaseController {
"username" => $this->getArg('username'),
"name" => $this->getArg('name'),
"email" => $this->getArg('email'),
"address" => $this->getArg('address'),
"address" => $this->getEscCharArg('address'),
"phone" => $this->getArg('phone'),
));
try {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment