diff --git a/bbs/list.php b/bbs/list.php
index c27531ea4..f60c94f1b 100644
--- a/bbs/list.php
+++ b/bbs/list.php
@@ -111,7 +111,7 @@ if (!$sca && !$stx) {
if (!$row['wr_id']) continue;
- $list[$i] = get_list($row, $board, $board_skin_path, $board['bo_subject_len']);
+ $list[$i] = get_list($row, $board, $board_skin_url, $board['bo_subject_len']);
$list[$i]['is_notice'] = true;
$i++;
diff --git a/lib/common.lib.php b/lib/common.lib.php
index aa357e7fa..6b4c6cccd 100644
--- a/lib/common.lib.php
+++ b/lib/common.lib.php
@@ -325,7 +325,7 @@ function get_dirsize($dir)
// 게시물 정보($write_row)를 출력하기 위하여 $list로 가공된 정보를 복사 및 가공
-function get_list($write_row, $board, $skin_path, $subject_len=40)
+function get_list($write_row, $board, $skin_url, $subject_len=40)
{
global $g4, $config;
global $qstr, $page;
@@ -393,11 +393,11 @@ function get_list($write_row, $board, $skin_path, $subject_len=40)
$list['icon_reply'] = '';
if ($list['reply'])
- $list['icon_reply'] = '
';
+ $list['icon_reply'] = '
';
$list['icon_link'] = '';
if ($list['wr_link1'] || $list['wr_link2'])
- $list['icon_link'] = '
';
+ $list['icon_link'] = '
';
// 분류명 링크
$list['ca_name_href'] = G4_BBS_URL.'/board.php?bo_table='.$board['bo_table'].'&sca='.urlencode($list['ca_name']);
@@ -407,15 +407,15 @@ function get_list($write_row, $board, $skin_path, $subject_len=40)
$list['icon_new'] = '';
if ($list['wr_datetime'] >= date("Y-m-d H:i:s", $g4['server_time'] - ($board['bo_new'] * 3600)))
- $list['icon_new'] = '
';
+ $list['icon_new'] = '
';
$list['icon_hot'] = '';
if ($list['wr_hit'] >= $board['bo_hot'])
- $list['icon_hot'] = '
';
+ $list['icon_hot'] = '
';
$list['icon_secret'] = '';
if (strstr($list['wr_option'], 'secret'))
- $list['icon_secret'] = '
';
+ $list['icon_secret'] = '
';
// 링크
for ($i=1; $i<=G4_LINK_COUNT; $i++) {
@@ -428,15 +428,15 @@ function get_list($write_row, $board, $skin_path, $subject_len=40)
$list['file'] = get_file($board['bo_table'], $list['wr_id']);
if ($list['file']['count'])
- $list['icon_file'] = '
';
+ $list['icon_file'] = '
';
return $list;
}
// get_list 의 alias
-function get_view($write_row, $board, $skin_path, $subject_len=125)
+function get_view($write_row, $board, $skin_url, $subject_len=125)
{
- return get_list($write_row, $board, $skin_path, $subject_len);
+ return get_list($write_row, $board, $skin_url, $subject_len);
}