Merge #1681 fix #1659 확장변수 반환 포맷이 달라질 수 있는 문제 수정 by YJSoft

* pr/1681:
  fix #1659 확장변수 반환 포맷이 달라질 수 있는 문제 수정
This commit is contained in:
Kijin Sung 2015-10-08 15:08:35 +09:00
commit 7dee2908e1

View file

@ -292,11 +292,11 @@ class ExtraItem
/**
* Returns a value for HTML
*
* @return string Returns a value expressed in HTML.
* @return string Returns filtered value
*/
function getValue()
{
return $this->_getTypeValue($this->type, $this->value);
return removeHackTag($this->value);
}
/**