strip_tags 함수 오타 수정

This commit is contained in:
chicpro
2014-04-15 09:37:41 +09:00
parent c7f86a8a96
commit 3e18233c2d
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ include_once('./_common.php');
auth_check($auth[$sub_menu], "w");
$ca_id = trim($ca_id);
$it_name = trim(stripslashes($it_name));
$it_name = trim(strip_tags($it_name));
if(!$ca_id && !$it_name)
die('<p>상품의 분류를 선택하시거나 상품명을 입력하신 후 검색하여 주십시오.</p>');

View File

@ -5,7 +5,7 @@ include_once('./_common.php');
auth_check($auth[$sub_menu], "w");
$ca_id = trim($ca_id);
$it_name = trim(stripslashes($it_name));
$it_name = trim(strip_tags($it_name));
if(!$ca_id && !$it_name)
die('<p>상품의 분류를 선택하시거나 상품명을 입력하신 후 검색하여 주십시오.</p>');