#851 Context::convertEncodingStr의 불필요한 사용 제거

This commit is contained in:
khongchi 2014-08-18 16:31:20 +09:00
parent 8fb57dbb8e
commit b77ffb1af9
2 changed files with 5 additions and 1 deletions

View file

@ -1072,6 +1072,7 @@ class Context
*/
function convertEncodingStr($str)
{
if(!$str) return null;
$obj = new stdClass();
$obj->str = $str;
$obj = self::convertEncoding($obj);