mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 02:14:13 +00:00
Merge pull request #696 from HB9HIL/eqsl_pwd
Eqsl Password HTMLspecialchars
This commit is contained in:
@@ -41,7 +41,7 @@ class Eqslmethods_model extends CI_Model {
|
||||
|
||||
function uploadUser($userid, $username, $password) {
|
||||
$data['user_eqsl_name'] = $this->security->xss_clean($username);
|
||||
$data['user_eqsl_password'] = $this->security->xss_clean($password);
|
||||
$data['user_eqsl_password'] = html_entity_decode($this->security->xss_clean($password));
|
||||
$clean_userid = $this->security->xss_clean($userid);
|
||||
|
||||
$qslsnotsent = $this->eqsl_not_yet_sent($clean_userid);
|
||||
|
||||
Reference in New Issue
Block a user