diff --git a/classes/file/FileHandler.class.php b/classes/file/FileHandler.class.php index f275e301e..e7e79de09 100644 --- a/classes/file/FileHandler.class.php +++ b/classes/file/FileHandler.class.php @@ -204,13 +204,8 @@ if(function_exists('imagecreatetruecolor')) $thumb = @imagecreatetruecolor($resize_width, $resize_height); else $thumb = @imagecreate($resize_width, $resize_height); - if(!function_exists('imagecolortransparent')) { - $white = @imagecolorallocate($thumb, 255,255,255); - @imagefilledrectangle($thumb,0,0,$resize_width-1,$resize_height-1,$white); - } else { - $trans = @imagecolorat($thumb, 1,1); - @imagecolortransparent($thumb, $trans); - } + $white = @imagecolorallocate($thumb, 255,255,255); + @imagefilledrectangle($thumb,0,0,$resize_width-1,$resize_height-1,$white); // 이미지 정보가 정해진 크기보다 크면 크기를 바꿈 (%를 구해서 처리) if($resize_width>0 && $width > $resize_width) $width_per = $resize_width / $width; diff --git a/layouts/xe_official/js/xe_official.js b/layouts/xe_official/js/xe_official.js index 66cba22ce..bf49ce705 100644 --- a/layouts/xe_official/js/xe_official.js +++ b/layouts/xe_official/js/xe_official.js @@ -31,6 +31,6 @@ function lnbToggle(id) { // IS function chkIsKind(key, value) { showHide('selectOrder'); - xGetElementById('search_kind'+key).checked = true; - xInnerHtml('search_kind_label', value); + xGetElementById('search_target'+key).checked = true; + xInnerHtml('search_target_label', value); } diff --git a/layouts/xe_official/layout.html b/layouts/xe_official/layout.html index 80b8a081d..b1bbcdce6 100644 --- a/layouts/xe_official/layout.html +++ b/layouts/xe_official/layout.html @@ -44,7 +44,7 @@ -