- 프로그램
GNU4 위즈모바일 플러그인 (무료형) v1.0.11
: 전체 최신글 상수명 오류 수정.
/m/skin/latest/stylebox/_common.php
include_once("$g4[path]/".MOBILE_DIR."/reconfig.php");
: php 버전이 낮을경우 array_pop 오류 수정.
/m/skin/board/basic/list.skin.php
$iconf = "";
if ($list[$i][file]["count"] > 0) {
$fmaxno = array_pop(array_keys($list[$i][file]));
for ($j=0;$j<=$fmaxno;$j++) {
if ($list[$i][file][$j][image_type] > 0) {
$list[$i][icon_file] = "<img src='{$board_skin_path}/img/ico-img.gif' border=0 />";
break;
}
}
}
를
if ($list[$i][file]["count"] > 0) {
for ($j=0;$j<=$list[$i][file]["count"];$j++) {
if ($list[$i][file][$j][image_type] > 0) {
$list[$i][icon_file] = "<img src='{$board_skin_path}/img/ico-img.gif' border=0 />";
break;
}
}
}
로 변경.
첨부파일
- 위즈모바일-무료형-v1.0.11.zip (394.9K) 87회 다운로드 | DATE : 2013-12-27 21:11:27