쿼리문에서 따옴표 제대로 제거되지 않는 오류 수정

This commit is contained in:
chicpro
2015-02-23 11:09:19 +09:00
parent 061c0f0c6e
commit feb06c3fde
3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ include_once('../common.php');
if (isset($_REQUEST['sort'])) {
$sort = trim($_REQUEST['sort']);
$sort = preg_replace("/[\<\>\'\"\%\=\(\)\s]/", "", $sort);
$sort = preg_replace("/[\<\>\'\"\\\'\\\"\%\=\(\)\s]/", "", $sort);
} else {
$sort = '';
}