사용자단 따옴표 수정
This commit is contained in:
@ -2,18 +2,18 @@
|
||||
if (!defined('_GNUBOARD_')) exit;
|
||||
|
||||
// 최신글 추출
|
||||
function latest($skin_dir="", $bo_table, $rows=10, $subject_len=40, $options="")
|
||||
function latest($skin_dir='', $bo_table, $rows=10, $subject_len=40, $options='')
|
||||
{
|
||||
global $g4;
|
||||
|
||||
if ($skin_dir)
|
||||
$latest_skin_path = "$g4[path]/skin/latest/$skin_dir";
|
||||
$latest_skin_path = $g4['path'].'/skin/latest/'.$skin_dir;
|
||||
else
|
||||
$latest_skin_path = "$g4[path]/skin/latest/basic";
|
||||
$latest_skin_path = $g4['path'].'/skin/latest/basic';
|
||||
|
||||
$list = array();
|
||||
|
||||
$sql = " select * from $g4[board_table] where bo_table = '$bo_table'";
|
||||
$sql = " select * from {$g4['board_table']} where bo_table = '$bo_table'";
|
||||
$board = sql_fetch($sql);
|
||||
|
||||
$tmp_write_table = $g4['write_prefix'] . $bo_table; // 게시판 테이블 전체이름
|
||||
@ -22,14 +22,14 @@ function latest($skin_dir="", $bo_table, $rows=10, $subject_len=40, $options="")
|
||||
$sql = " select * from $tmp_write_table where wr_is_comment = 0 order by wr_num limit 0, $rows ";
|
||||
//explain($sql);
|
||||
$result = sql_query($sql);
|
||||
for ($i=0; $row = sql_fetch_array($result); $i++)
|
||||
for ($i=0; $row = sql_fetch_array($result); $i++)
|
||||
$list[$i] = get_list($row, $board, $latest_skin_path, $subject_len);
|
||||
|
||||
|
||||
ob_start();
|
||||
include "$latest_skin_path/latest.skin.php";
|
||||
include $latest_skin_path.'/latest.skin.php';
|
||||
$content = ob_get_contents();
|
||||
ob_end_clean();
|
||||
|
||||
return $content;
|
||||
}
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user