URL 링크 : |
---|
오늘 코어 업데이트가 있어서 업데이트를 하였지만
코드에 오타가 있는 것을 찾아서 수정하였습니다
case 'tel' :
if(is_array($value))
@@ -228,7 +228,7 @@ function _getTypeValue($type, $value)
$values = array_values($values);
for($i = 0, $c = count($values); $i < $c; $i++)
{
$values[$i] = trim(htmlspecialchars($values[$i], ENT_COMPAT | ENT_HTML401, 'UTF-8', false));
$values[$i] = trim(escpe($values[$i], false));
}
return $values;
@@ -255,7 +255,7 @@ function _getTypeValue($type, $value)
$values = array_values($values);
for($i = 0, $c = count($values); $i < $c; $i++)
{
$values[$i] = trim(htmlspecialchars($values[$i], ENT_COMPAT | ENT_HTML401, 'UTF-8', false));
$values[$i] = trim(escape($values[$i], false));
}
return $values;
@@ -276,7 +276,7 @@ function _getTypeValue($type, $value)
$values = array_values($values);
for($i = 0, $c = count($values); $i < $c; $i++)
{
$values[$i] = trim(htmlspecialchars($values[$i], ENT_COMPAT | ENT_HTML401, 'UTF-8', false));
$values[$i] = trim(escape($values[$i], false));
}
return $values;
@@ -285,7 +285,7 @@ function _getTypeValue($type, $value)
//case 'text' :
//case 'textarea' :
default :
return htmlspecialchars($value, ENT_COMPAT | ENT_HTML401, 'UTF-8', false);
return escape($value, false);
수고 많으시내요