diff --git a/lib/latest.lib.php b/lib/latest.lib.php index e312a1d2c..663a87775 100644 --- a/lib/latest.lib.php +++ b/lib/latest.lib.php @@ -6,8 +6,44 @@ function latest($skin_dir='', $bo_table, $rows=10, $subject_len=40, $options='') { global $g4; - if (!$skin_dir) - $skin_dir = 'basic'; + if (!$skin_dir) $skin_dir = 'basic'; + $latest_skin_path = skin_path().'/latest/'.$skin_dir; + + $cache_file = $g4['cache_latest_path']."/{$bo_table}_{$skin_dir}_{$rows}_{$subject_len}.php"; + if (!file_exists($cache_file)) { + $list = array(); + + $sql = " select * from $g4[board_table] where bo_table = '$bo_table'"; + $board = sql_fetch($sql); + + $tmp_write_table = $g4['write_prefix'] . $bo_table; // 게시판 테이블 전체이름 + $sql = " select wr_id, ca_name, wr_subject, wr_comment, wr_hit, wr_datetime, wr_name, mb_id, wr_singo, wr_good, wr_nogood from $tmp_write_table where wr_is_comment = 0 "; + if ($ca_name) { + $sql .= " and ca_name in ('', '공지', '$ca_name') "; + } + $sql .= " order by wr_num limit 0, $rows "; + $result = sql_query($sql); + for ($i=0; $row = sql_fetch_array($result); $i++) { + $list[$i] = get_list($row, $board, $latest_skin_path, $subject_len); + } + + $handle = fopen($cache_file, "w"); + $cache_content = ""; + //$cache_content = all_trim($cache_content); + fwrite($handle, $cache_content); + fclose($handle); + } + + include_once($cache_file); + + ob_start(); + include "$latest_skin_path/latest.skin.php"; + $content = ob_get_contents(); + ob_end_clean(); + + return $content; + + /* $latest_skin_path = skin_path().'/latest/'.$skin_dir; $list = array(); @@ -30,5 +66,6 @@ function latest($skin_dir='', $bo_table, $rows=10, $subject_len=40, $options='') ob_end_clean(); return $content; + */ } ?> \ No newline at end of file