베타5버전 b4.lib.php 수정입니다. 정보
베타5버전 b4.lib.php 수정입니다.첨부파일
본문
유니코드 처리 코드를 누락하셨습니다.
65라인에 아래 내용 추가되었습니다.
$img['src']=html_entity_decode($img['src']);
65라인에 아래 내용 추가되었습니다.
$img['src']=html_entity_decode($img['src']);
추천
0
0
댓글 전체
해당 코드는 resize의 가장 처음에 들어 있어요 ^^
// 가끔씩 img의 파일이름이 깨어지는 경우가 있어서 decoding 해줍니다 (예: on = on)
$img['src'] = html_entity_decode($img[src]);
// 가끔씩 img의 파일이름이 깨어지는 경우가 있어서 decoding 해줍니다 (예: on = on)
$img['src'] = html_entity_decode($img[src]);
불당님. resize의 가장 처음에 넣으시면 안됩니다. ㅠ_ㅠ
$img에 데이터를 할당하는 시기가 56라인쯤의
if (function_exists('array_combine'))
$img = array_change_key_case(array_combine($match['attribute'], $match['value']));
else
$img = array_change_key_case(array_combine4($match['attribute'], $match['value']));
에 있기 때문에 맨 처음에 넣으시면 빈 변수에 빈값을 넣어서 정상적 동작하지 않습니다.
$img에 데이터를 할당하는 시기가 56라인쯤의
if (function_exists('array_combine'))
$img = array_change_key_case(array_combine($match['attribute'], $match['value']));
else
$img = array_change_key_case(array_combine4($match['attribute'], $match['value']));
에 있기 때문에 맨 처음에 넣으시면 빈 변수에 빈값을 넣어서 정상적 동작하지 않습니다.
아~ 생각없이 ㅠ..ㅠ... 감사합니다.