XSS clean to run on username when logging in if XSS_clean in config.php isn't called
这个提交包含在:
父节点
51723d146c
当前提交
7450c14836
共有 1 个文件被更改,包括 1 次插入 和 1 次删除
|
|
@ -323,7 +323,7 @@ class User extends CI_Controller {
|
||||||
|
|
||||||
function login() {
|
function login() {
|
||||||
$this->load->model('user_model');
|
$this->load->model('user_model');
|
||||||
$query = $this->user_model->get($this->input->post('user_name'));
|
$query = $this->user_model->get($this->input->post('user_name', true));
|
||||||
|
|
||||||
$this->load->library('form_validation');
|
$this->load->library('form_validation');
|
||||||
|
|
||||||
|
|
|
||||||
正在加载…
在新工单中引用