- don't filter theme.

This commit is contained in:
wangchunsheng
2010-10-25 03:16:44 +00:00
parent 130728543b
commit e46cf31182
-2
View File
@@ -162,8 +162,6 @@ class userModel extends model
*/
public function identify($account, $password)
{
$account = filter_var($account, FILTER_SANITIZE_STRING);
$password = filter_var($password, FILTER_SANITIZE_STRING);
if(!$account or !$password) return false;
$user = $this->dao->select('*')->from(TABLE_USER)