fix #1796 에디터 컴포넌트와 위젯의 스타일도 체크함

This commit is contained in:
YJSoft 2015-10-26 17:45:37 +09:00 committed by bnu
parent 5fc1ee52f3
commit 961deaf3ea

View file

@ -93,11 +93,17 @@ class Purifier
{
foreach($m2[1] as $value2)
{
//SECISSUE check style attr
if($value2 == 'style')
{
continue;
}
$attributeList[] = $value2;
}
}
}
}
return array_unique($attributeList);
}
@ -121,6 +127,11 @@ class Purifier
{
foreach($m2[1] as $value2)
{
//SECISSUE check style attr
if($value2 == 'style')
{
continue;
}
$attributeList[] = $value2;
}
}