Merge branch 'master' of github.com:gnuboard/g4s
@ -84,6 +84,7 @@ $sql_common = " gr_id = '{$_POST['gr_id']}',
|
||||
bo_use_ip_view = '{$_POST['bo_use_ip_view']}',
|
||||
bo_use_list_view = '{$_POST['bo_use_list_view']}',
|
||||
bo_use_list_content = '{$_POST['bo_use_list_content']}',
|
||||
bo_use_email = '{$_POST['bo_use_email']}',
|
||||
bo_table_width = '{$_POST['bo_table_width']}',
|
||||
bo_subject_len = '{$_POST['bo_subject_len']}',
|
||||
bo_page_rows = '{$_POST['bo_page_rows']}',
|
||||
@ -128,9 +129,6 @@ $sql_common = " gr_id = '{$_POST['gr_id']}',
|
||||
bo_9 = '{$_POST['bo_9']}',
|
||||
bo_10 = '{$_POST['bo_10']}' ";
|
||||
|
||||
if (isset($_POST['bo_use_email']))
|
||||
$sql_common .= ", bo_use_email = '{$_POST['bo_use_email']}'";
|
||||
|
||||
if ($w == '') {
|
||||
|
||||
$row = sql_fetch(" select count(*) as cnt from {$g4['board_table']} where bo_table = '{$bo_table}' ");
|
||||
|
||||
47
bbs/alert_close.php
Normal file
@ -0,0 +1,47 @@
|
||||
<?
|
||||
include_once('./_common.php');
|
||||
include_once($g4['path'].'/head.sub.php');
|
||||
|
||||
$msg2 = str_replace("\\n", "<br>", $msg);
|
||||
|
||||
if($error) {
|
||||
$header2 = "다음 항목에 오류가 있습니다.";
|
||||
$msg3 = "새창을 닫으시고 이전 작업을 다시 시도해 주세요.";
|
||||
} else {
|
||||
$header2 = "다음 내용을 확인해 주세요.";
|
||||
$msg3 = "새창을 닫으신 후 서비스를 이용해 주세요.";
|
||||
}
|
||||
?>
|
||||
|
||||
<script>
|
||||
alert("<? echo $msg; ?>");
|
||||
window.close();
|
||||
</script>
|
||||
|
||||
<noscript>
|
||||
<article id="validation_check">
|
||||
<header>
|
||||
<hgroup>
|
||||
<!-- <h1>회원가입 정보 입력 확인</h1> --> <!-- 수행 중이던 작업 내용 -->
|
||||
<h1><?=$header?></h1> <!-- 수행 중이던 작업 내용 -->
|
||||
<h2><?=$header2?></h2>
|
||||
</hgroup>
|
||||
</header>
|
||||
<p>
|
||||
<!-- <strong>항목</strong> 오류내역 -->
|
||||
<!--
|
||||
<strong>이름</strong> 필수 입력입니다. 한글만 입력할 수 있습니다.<br>
|
||||
<strong>이메일</strong> 올바르게 입력하지 않았습니다.<br>
|
||||
-->
|
||||
<?=$msg2?>
|
||||
</p>
|
||||
<p>
|
||||
<?=$msg3?>
|
||||
</p>
|
||||
|
||||
</article>
|
||||
</noscript>
|
||||
|
||||
<?
|
||||
include_once($g4['path'].'/tail.sub.php');
|
||||
?>
|
||||
@ -73,5 +73,5 @@ for ($i=0; $i<count($member_list['id']); $i++) {
|
||||
|
||||
$str_nick_list = implode(',', $member_list['nick']);
|
||||
|
||||
alert($str_nick_list.' 님께 쪽지를 전달하였습니다.', './memo.php?kind=send');
|
||||
alert($str_nick_list.' 님께 쪽지를 전달하였습니다.', './memo.php?kind=send', false);
|
||||
?>
|
||||
@ -2,12 +2,15 @@
|
||||
include_once('./_common.php');
|
||||
|
||||
$po = sql_fetch(" select * from {$g4['poll_table']} where po_id = '{$_POST['po_id']}' ");
|
||||
if (!$po['po_id'])
|
||||
if (!$po['po_id'])
|
||||
alert('po_id 값이 제대로 넘어오지 않았습니다.');
|
||||
|
||||
if ($member['mb_level'] < $po['po_level'])
|
||||
if ($member['mb_level'] < $po['po_level'])
|
||||
alert_close('권한 '.$po['po_level'].' 이상 회원만 투표에 참여하실 수 있습니다.');
|
||||
|
||||
if(!$gb_poll)
|
||||
alert_close('항목을 선택하세요.');
|
||||
|
||||
// 쿠키에 저장된 투표번호가 없다면
|
||||
if (get_cookie('ck_po_id') != $po['po_id']) {
|
||||
// 투표했던 ip들 중에서 찾아본다
|
||||
|
||||
@ -45,7 +45,7 @@ if ($w == '') {
|
||||
if ($is_member) {
|
||||
$tmp_point = ($member['mb_point'] > 0) ? $member['mb_point'] : 0;
|
||||
if ($tmp_point + $board['bo_write_point'] < 0 && !$is_admin) {
|
||||
alert('보유하신 포인트('.number_format($member['mb_point']).')가 없거나 모자라서 글쓰기('.number_format($board['bo_write_point']).')가 불가합니다.'.PHP_EOL.PHP_EOL.'포인트를 적립하신 후 다시 글쓰기 해 주십시오.');
|
||||
alert('보유하신 포인트('.number_format($member['mb_point']).')가 없거나 모자라서 글쓰기('.number_format($board['bo_write_point']).')가 불가합니다.\\n\\n포인트를 적립하신 후 다시 글쓰기 해 주십시오.');
|
||||
}
|
||||
}
|
||||
|
||||
@ -59,7 +59,7 @@ if ($w == '') {
|
||||
if ($member['mb_id']) {
|
||||
alert('글을 수정할 권한이 없습니다.');
|
||||
} else {
|
||||
alert('글을 수정할 권한이 없습니다.'.PHP_EOL.PHP_EOL.'회원이시라면 로그인 후 이용해 보십시오.', './login.php?'.$qstr.'&url='.urlencode($_SERVER['PHP_SELF'].'?bo_table='.$bo_table));
|
||||
alert('글을 수정할 권한이 없습니다.\\n\\n회원이시라면 로그인 후 이용해 보십시오.', './login.php?'.$qstr.'&url='.urlencode($_SERVER['PHP_SELF'].'?bo_table='.$bo_table));
|
||||
}
|
||||
}
|
||||
|
||||
@ -75,7 +75,7 @@ if ($w == '') {
|
||||
and wr_is_comment = 0 ";
|
||||
$row = sql_fetch($sql);
|
||||
if ($row['cnt'] && !$is_admin)
|
||||
alert('이 글과 관련된 답변글이 존재하므로 수정 할 수 없습니다.'.PHP_EOL.PHP_EOL.'답변글이 있는 원글은 수정할 수 없습니다.');
|
||||
alert('이 글과 관련된 답변글이 존재하므로 수정 할 수 없습니다.\\n\\n답변글이 있는 원글은 수정할 수 없습니다.');
|
||||
|
||||
// 코멘트 달린 원글의 수정 여부
|
||||
$sql = " select count(*) as cnt from {$write_table}
|
||||
@ -84,7 +84,7 @@ if ($w == '') {
|
||||
and wr_is_comment = 1 ";
|
||||
$row = sql_fetch($sql);
|
||||
if ($row['cnt'] >= $board['bo_count_modify'] && !$is_admin)
|
||||
alert('이 글과 관련된 코멘트가 존재하므로 수정 할 수 없습니다.'.PHP_EOL.PHP_EOL.'코멘트가 '.$board['bo_count_modify'].'건 이상 달린 원글은 수정할 수 없습니다.');
|
||||
alert('이 글과 관련된 코멘트가 존재하므로 수정 할 수 없습니다.\\n\\n코멘트가 '.$board['bo_count_modify'].'건 이상 달린 원글은 수정할 수 없습니다.');
|
||||
|
||||
$title_msg = '글수정';
|
||||
} else if ($w == 'r') {
|
||||
@ -92,12 +92,12 @@ if ($w == '') {
|
||||
if ($member['mb_id'])
|
||||
alert('글을 답변할 권한이 없습니다.');
|
||||
else
|
||||
alert('글을 답변할 권한이 없습니다.'.PHP_EOL.PHP_EOL.'회원이시라면 로그인 후 이용해 보십시오.', './login.php?$qstr&url='.urlencode($_SERVER['PHP_SELF'].'?bo_table='.$bo_table));
|
||||
alert('글을 답변할 권한이 없습니다.\\n\\n회원이시라면 로그인 후 이용해 보십시오.', './login.php?$qstr&url='.urlencode($_SERVER['PHP_SELF'].'?bo_table='.$bo_table));
|
||||
}
|
||||
|
||||
$tmp_point = isset($member['mb_point']) ? $member['mb_point'] : 0;
|
||||
if ($tmp_point + $board['bo_write_point'] < 0 && !$is_admin)
|
||||
alert('보유하신 포인트('.number_format($member['mb_point']).')가 없거나 모자라서 글답변('.number_format($board['bo_comment_point']).')가 불가합니다.'.PHP_EOL.PHP_EOL.'포인트를 적립하신 후 다시 글답변 해 주십시오.');
|
||||
alert('보유하신 포인트('.number_format($member['mb_point']).')가 없거나 모자라서 글답변('.number_format($board['bo_comment_point']).')가 불가합니다.\\n\\n포인트를 적립하신 후 다시 글답변 해 주십시오.');
|
||||
|
||||
//if (preg_match("/[^0-9]{0,1}{$wr_id}[\r]{0,1}/",$board['bo_notice']))
|
||||
if (in_array((int)$wr_id, $notice_array))
|
||||
@ -128,7 +128,7 @@ if ($w == '') {
|
||||
|
||||
// 최대 답변은 테이블에 잡아놓은 wr_reply 사이즈만큼만 가능합니다.
|
||||
if (strlen($reply_array['wr_reply']) == 10)
|
||||
alert('더 이상 답변하실 수 없습니다.'.PHP_EOL.PHP_EOL.'답변은 10단계 까지만 가능합니다.');
|
||||
alert('더 이상 답변하실 수 없습니다.\\n\\n답변은 10단계 까지만 가능합니다.');
|
||||
|
||||
$reply_len = strlen($reply_array['wr_reply']) + 1;
|
||||
if ($board['bo_reply_order']) {
|
||||
@ -148,7 +148,7 @@ if ($w == '') {
|
||||
if (!$row['reply'])
|
||||
$reply_char = $begin_reply_char;
|
||||
else if ($row['reply'] == $end_reply_char) // A~Z은 26 입니다.
|
||||
alert('더 이상 답변하실 수 없습니다.'.PHP_EOL.PHP_EOL.'답변은 26개 까지만 가능합니다.');
|
||||
alert('더 이상 답변하실 수 없습니다.\\n\\n답변은 26개 까지만 가능합니다.');
|
||||
else
|
||||
$reply_char = chr(ord($row['reply']) + $reply_number);
|
||||
|
||||
@ -170,7 +170,7 @@ if (!empty($group['gr_use_access'])) {
|
||||
$sql = " select gr_id from {$g4['group_member_table']} where gr_id = '{$board['gr_id']}' and mb_id = '{$member['mb_id']}' ";
|
||||
$row = sql_fetch($sql);
|
||||
if (!$row['gr_id'])
|
||||
alert('접근 권한이 없으므로 글쓰기가 불가합니다.'.PHP_EOL.PHP_EOL.'궁금하신 사항은 관리자에게 문의 바랍니다.');
|
||||
alert('접근 권한이 없으므로 글쓰기가 불가합니다.\\n\\n궁금하신 사항은 관리자에게 문의 바랍니다.');
|
||||
}
|
||||
}
|
||||
|
||||
@ -324,11 +324,11 @@ if ($w == '') {
|
||||
$content = $board['bo_insert_content'];
|
||||
} else if ($w == 'r') {
|
||||
if (!strstr($write['wr_option'], 'html')) {
|
||||
$content = "\\n\\n\\n > "
|
||||
."\\n > "
|
||||
."\\n > ".preg_replace("/\n/", "\n> ", get_text($write['wr_content'], 0))
|
||||
."\\n > "
|
||||
."\\n > ";
|
||||
$content = "\n\n\n > "
|
||||
."\n > "
|
||||
."\n > ".preg_replace("/\n/", "\n> ", get_text($write['wr_content'], 0))
|
||||
."\n > "
|
||||
."\n > ";
|
||||
|
||||
}
|
||||
} else {
|
||||
@ -343,7 +343,7 @@ if ($width <= 100)
|
||||
|
||||
$captcha_html = "";
|
||||
if ($is_guest) {
|
||||
$captcha_html = captcha_html();
|
||||
$captcha_html = captcha_html();
|
||||
}
|
||||
|
||||
include_once($g4['path'].'/head.sub.php');
|
||||
|
||||
@ -143,7 +143,7 @@ a {color:#000;text-decoration:none}
|
||||
/* 설문조사 결과 (새창) */
|
||||
#poll_result section {padding:15px;width:90%}
|
||||
#poll_result h2 {margin:0;padding:20px 0}
|
||||
#poll_result_list {margin:0 auto;border:1px solid #ddd;border-bottom:0}
|
||||
#poll_result_list {margin:0 auto;border:1px solid #ddd}
|
||||
#poll_result_list h2 {text-align:center}
|
||||
#poll_result_list dl,
|
||||
#poll_result_list dt,
|
||||
@ -157,7 +157,7 @@ a {color:#000;text-decoration:none}
|
||||
#poll_result_list p span {position:absolute;top:5px;right:5%;width:80px;text-align:right}
|
||||
.poll_result_graph {position:relative;margin-right:5%;height:5px;background:#ddd}
|
||||
.poll_result_graph span {position:absolute;top:0;left:0;height:100%;background:#ff4679}
|
||||
#poll_result_cmt {margin:0 auto 20px;border:1px solid #ddd;background:#f7f7f7}
|
||||
#poll_result_cmt {margin:0 auto 20px;border:1px solid #ddd;border-top:0;background:#f7f7f7}
|
||||
#poll_result_cmt h2 {text-align:center}
|
||||
#poll_result_cmt article {margin:0 18px 15px;border-bottom:1px solid #e7e7e7}
|
||||
#poll_result_cmt h1 {display:inline-block;margin:0 10px 0 0;padding:0}
|
||||
@ -210,7 +210,7 @@ a {color:#000;text-decoration:none}
|
||||
|
||||
/* ##################################################################### 스킨 및 컨텐츠 */
|
||||
/* 공통 */
|
||||
.cnt_cmt {display:inline-block;margin-left:5px;color:#ff4679}
|
||||
.cnt_cmt {color:#ff4679}
|
||||
.readonly {background:#ff4679}
|
||||
.highlight {font-weight:bold;color:#ff4679}
|
||||
|
||||
@ -321,7 +321,7 @@ a {color:#000;text-decoration:none}
|
||||
#bo_list strong {color:#ff4679}
|
||||
#bo_list img {vertical-align:top}
|
||||
.bo_notice {background:#f5f5f5}
|
||||
.bo_cate_link {display:inline-block;margin:0 10px 0 0;font-weight:bold;text-decoration:none}
|
||||
.bo_cate_link {display:inline-block;margin:0 5px 0 0;padding:0 8px 0 0;border-right:1px solid #ddd;font-weight:bold;text-decoration:none}
|
||||
.bo_current {color:#ff4679}
|
||||
.td_subject img {margin-left:5px}
|
||||
|
||||
@ -345,7 +345,7 @@ a {color:#000;text-decoration:none}
|
||||
#bo_v_atc {padding:0 10px;zoom:1}
|
||||
#bo_v_atc:after {display:block;visibility:hidden;clear:both;content:""}
|
||||
#bo_v_atc h1 {margin:0;padding:0;height:0;overflow:hidden}
|
||||
#bo_v_atc p {padding:0 0 10px;min-height:300px;height:auto !important;height:300px}
|
||||
#bo_v_atc p {padding:0 0 10px;min-height:200px;height:auto !important;height:200px}
|
||||
#bo_v_file h2 {margin:0;padding:0;height:0;overflow:hidden}
|
||||
#bo_v_file ul {margin:0;padding:0;list-style:none}
|
||||
#bo_v_file li {border-bottom:1px solid #ddd;background:#f7f7f7}
|
||||
@ -371,14 +371,14 @@ a {color:#000;text-decoration:none}
|
||||
.bo_v_com li {float:left;margin-left:5px}
|
||||
|
||||
/* 게시판 댓글 */
|
||||
#bo_vc {padding:10px;border:1px solid #eee;background:#f9f9f9}
|
||||
#bo_vc {padding:10px 20px;border:1px solid #eee;background:#f9f9f9}
|
||||
#bo_vc h2 {margin:0;padding:0;height:0;overflow:hidden}
|
||||
#bo_vc article {margin:0 10px;padding:0 0 20px;border-bottom:1px solid #ddd}
|
||||
#bo_vc article {padding:0 0 10px;border-bottom:1px solid #ddd}
|
||||
#bo_vc header {position:relative;zoom:1}
|
||||
#bo_vc header:after {display:block;visibility:hidden;clear:both;content:""}
|
||||
#bo_vc header img {position:absolute;top:0;left:-30px}
|
||||
#bo_vc h1 {float:left;margin:15px 0 10px}
|
||||
.bo_vc_info {float:left;margin:15px 0 10px 15px;zoom:1}
|
||||
#bo_vc header img {position:absolute;top:15px;left:-20px}
|
||||
#bo_vc h1 {float:left;margin:15px 0 5px}
|
||||
.bo_vc_info {float:left;margin:15px 0 5px 15px;zoom:1}
|
||||
.bo_vc_info:after {display:block;visibility:hidden;clear:both;content:""}
|
||||
.bo_vc_info dt {float:left}
|
||||
.bo_vc_info dd {float:left;margin:0 15px 0 10px}
|
||||
@ -393,7 +393,7 @@ a {color:#000;text-decoration:none}
|
||||
.bo_vc_act {float:right;margin:0;list-style:none;zoom:1}
|
||||
.bo_vc_act:after {display:block;visibility:hidden;clear:both;content:""}
|
||||
.bo_vc_act li {float:left;margin-left:5px}
|
||||
#bo_vc_w {position:relative;margin-top:10px;padding:10px}
|
||||
#bo_vc_w {position:relative;padding-top:20px}
|
||||
#bo_vc_w #char_cnt {position:absolute;top:5px;right:10px}
|
||||
#bo_vc_warea {clear:both;position:relative;margin:0 90px 10px 0}
|
||||
#bo_vc_warea textarea {padding:3px;width:100%;height:50px;border:1px solid #ddd;background:#fff;vertical-align:middle}
|
||||
|
||||
|
Before Width: | Height: | Size: 69 B After Width: | Height: | Size: 68 B |
@ -142,13 +142,21 @@ function alert($msg='', $url='', $error=true)
|
||||
|
||||
|
||||
// 경고메세지 출력후 창을 닫음
|
||||
function alert_close($msg)
|
||||
function alert_close($msg, $error=true)
|
||||
{
|
||||
global $g4;
|
||||
|
||||
/*
|
||||
echo "<meta http-equiv=\"content-type\" content=\"text/html; charset={$g4['charset']}\">";
|
||||
echo "<script> alert('$msg'); window.close(); </script>";
|
||||
exit;
|
||||
*/
|
||||
$header = '';
|
||||
if (isset($g4['title'])) {
|
||||
$header = $g4['title'];
|
||||
}
|
||||
include_once("{$g4['bbs_path']}/alert_close.php");
|
||||
exit;
|
||||
}
|
||||
|
||||
// confirm 창
|
||||
@ -362,7 +370,7 @@ function get_list($write_row, $board, $skin_path, $subject_len=40)
|
||||
if (strlen($reply) > 0)
|
||||
{
|
||||
for ($k=0; $k<strlen($reply); $k++)
|
||||
$list['reply'] .= ' ';
|
||||
$list['reply'] .= ' ';
|
||||
}
|
||||
|
||||
$list['icon_reply'] = '';
|
||||
|
||||
|
Before Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 223 B |
|
Before Width: | Height: | Size: 400 B |
|
Before Width: | Height: | Size: 303 B |
|
Before Width: | Height: | Size: 162 B |
|
Before Width: | Height: | Size: 159 B |
|
Before Width: | Height: | Size: 155 B |
|
Before Width: | Height: | Size: 246 B |
|
Before Width: | Height: | Size: 157 B |
|
Before Width: | Height: | Size: 285 B |
|
Before Width: | Height: | Size: 373 B |
|
Before Width: | Height: | Size: 298 B |
|
Before Width: | Height: | Size: 410 B |
|
Before Width: | Height: | Size: 630 B |
|
Before Width: | Height: | Size: 333 B |
|
Before Width: | Height: | Size: 353 B |
|
Before Width: | Height: | Size: 307 B |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 369 B |
|
Before Width: | Height: | Size: 529 B |
|
Before Width: | Height: | Size: 483 B |
|
Before Width: | Height: | Size: 477 B |
|
Before Width: | Height: | Size: 488 B |
|
Before Width: | Height: | Size: 374 B |
|
Before Width: | Height: | Size: 158 B |
|
Before Width: | Height: | Size: 590 B |
|
Before Width: | Height: | Size: 124 B |
|
Before Width: | Height: | Size: 161 B |
|
Before Width: | Height: | Size: 162 B |
|
Before Width: | Height: | Size: 401 B |
|
Before Width: | Height: | Size: 492 B |
|
Before Width: | Height: | Size: 477 B |
|
Before Width: | Height: | Size: 565 B |
|
Before Width: | Height: | Size: 157 B |
|
Before Width: | Height: | Size: 164 B |
|
Before Width: | Height: | Size: 251 B |
|
Before Width: | Height: | Size: 158 B |
|
Before Width: | Height: | Size: 590 B |
|
Before Width: | Height: | Size: 51 B |
|
Before Width: | Height: | Size: 175 B |
|
Before Width: | Height: | Size: 406 B |
|
Before Width: | Height: | Size: 73 B |
|
Before Width: | Height: | Size: 209 B |
|
Before Width: | Height: | Size: 242 B |
|
Before Width: | Height: | Size: 270 B After Width: | Height: | Size: 76 B |
|
Before Width: | Height: | Size: 210 B After Width: | Height: | Size: 215 B |
|
Before Width: | Height: | Size: 280 B After Width: | Height: | Size: 79 B |
|
Before Width: | Height: | Size: 240 B |
|
Before Width: | Height: | Size: 104 B |
|
Before Width: | Height: | Size: 243 B After Width: | Height: | Size: 80 B |
|
Before Width: | Height: | Size: 208 B |
|
Before Width: | Height: | Size: 229 B |
|
Before Width: | Height: | Size: 198 B |
|
Before Width: | Height: | Size: 43 B |
|
Before Width: | Height: | Size: 248 B |
|
Before Width: | Height: | Size: 252 B |
|
Before Width: | Height: | Size: 231 B |
|
Before Width: | Height: | Size: 230 B |
|
Before Width: | Height: | Size: 307 B |
|
Before Width: | Height: | Size: 315 B |
|
Before Width: | Height: | Size: 176 B |
|
Before Width: | Height: | Size: 102 B |
|
Before Width: | Height: | Size: 49 B |
|
Before Width: | Height: | Size: 172 B |
|
Before Width: | Height: | Size: 50 B |
@ -99,10 +99,10 @@ for ($i=0; $i<count($list); $i++) {
|
||||
echo $list[$i]['icon_reply'];
|
||||
if ($is_category && $list[$i]['ca_name']) {
|
||||
?>
|
||||
<a href="<?=$list[$i]['ca_name_href']?>" class="bo_cate_link<? if ($wr_id == $list[$i]['wr_id']) echo " bo_current";?>"><?=$list[$i]['ca_name']?></a>
|
||||
<a href="<?=$list[$i]['ca_name_href']?>" class="bo_cate_link"><?=$list[$i]['ca_name']?></a>
|
||||
<? } ?>
|
||||
|
||||
<a href="<?=$list[$i]['href']?>"<? if ($wr_id == $list[$i]['wr_id']) echo " class=\"bo_current\"";?>>
|
||||
<a href="<?=$list[$i]['href']?>">
|
||||
<?=$list[$i]['subject']?>
|
||||
<? if ($list[$i]['comment_cnt']) { ?><span class="sound_only">댓글</span><?=$list[$i]['comment_cnt'];?><span class="sound_only">개</span><? } ?>
|
||||
</a>
|
||||
@ -112,9 +112,9 @@ for ($i=0; $i<count($list); $i++) {
|
||||
// if ($list[$i]['file']['count']) { echo '<'.$list[$i]['file']['count'].'>'; }
|
||||
|
||||
if (isset($list[$i]['icon_new'])) echo $list[$i]['icon_new'];
|
||||
if (isset($list[$i]['icon_hot'])) echo $list[$i]['icon_hot'];
|
||||
if (isset($list[$i]['icon_file'])) echo $list[$i]['icon_file'];
|
||||
if (isset($list[$i]['icon_link'])) echo $list[$i]['icon_link'];
|
||||
if (isset($list[$i]['icon_hot'])) echo $list[$i]['icon_hot'];
|
||||
if (isset($list[$i]['icon_secret'])) echo $list[$i]['icon_secret'];
|
||||
?>
|
||||
</td>
|
||||
|
||||
@ -121,7 +121,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
|
||||
<? if ($scrap_href || $good_href || $nogood_href) { ?>
|
||||
<div id="bo_v_act">
|
||||
<? if ($scrap_href) { ?><a href="<? echo $scrap_href; ?>" onclick="win_scrap(this.href); return false;" class="btn02">스크랩</a><? } ?>
|
||||
<? if ($scrap_href) { ?><a href="<? echo $scrap_href; ?>" target="_blank" onclick="win_scrap(this.href); return false;" class="btn02">스크랩</a><? } ?>
|
||||
<? if ($good_href) {?><a href="<?=$good_href?>" class="btn02" target="hiddenframe">추천 <strong><?=number_format($view['wr_good'])?></strong></a><? } ?>
|
||||
<? if ($nogood_href) {?><a href="<?=$nogood_href?>" class="btn02" target="hiddenframe">비추천 <strong><?=number_format($view['wr_nogood'])?></strong></a><? } ?>
|
||||
</div>
|
||||
|
||||
@ -14,7 +14,8 @@ var char_max = parseInt(<?=$comment_max?>); // 최대
|
||||
<?
|
||||
for ($i=0; $i<count($list); $i++) {
|
||||
$comment_id = $list[$i]['wr_id'];
|
||||
$comment_depth = strlen($list[$i]['wr_comment_reply']) * 30;
|
||||
$cmt_depth = ""; // 댓글단계
|
||||
$cmt_depth = strlen($list[$i]['wr_comment_reply']) * 20;
|
||||
if (strstr($list[$i]['wr_option'], "secret")) echo '비밀글';
|
||||
$str = $list[$i]['content'];
|
||||
if (strstr($list[$i]['wr_option'], "secret"))
|
||||
@ -24,10 +25,10 @@ var char_max = parseInt(<?=$comment_max?>); // 최대
|
||||
//$str = preg_replace("/\[\<a\s.*href\=\"(http|https|ftp)\:\/\/([^[:space:]]+)\.(swf)\".*\<\/a\>\]/i", "<script>doc_write(flash_movie('$1://$2.$3'));</script>", $str);
|
||||
$str = preg_replace("/\[\<a\s*href\=\"(http|https|ftp)\:\/\/([^[:space:]]+)\.(gif|png|jpg|jpeg|bmp)\"\s*[^\>]*\>[^\s]*\<\/a\>\]/i", "<img src='$1://$2.$3' id='target_resize_image[]' onclick='image_window(this);'>", $str);
|
||||
?>
|
||||
<article id="c_<?=$comment_id?>" <?if ($comment_depth) {?>style="margin-left:<?=$comment_depth?>px"<?}?>>
|
||||
<article id="c_<?=$comment_id?>" <?if ($cmt_depth) {?>style="margin-left:<?=$cmt_depth?>px"<?}?>>
|
||||
<header>
|
||||
<h1><?=$list[$i]['name']?><span class="sound_only">님의 댓글</span></h1>
|
||||
<? if ($comment_depth) {?><img src="<?=$g4['path']?>/img/icon/icon_re.gif" alt="댓글의 댓글"><? } ?>
|
||||
<? if ($cmt_depth) {?><img src="<?=$board_skin_path?>/img/icon_reply.gif" alt="댓글의 댓글"><? } ?>
|
||||
<dl class="bo_vc_info">
|
||||
<? if ($is_ip_view) { ?>
|
||||
<dt>아이피</dt>
|
||||
@ -139,7 +140,7 @@ var char_max = parseInt(<?=$comment_max?>); // 최대
|
||||
var subject = "";
|
||||
var content = "";
|
||||
$.ajax({
|
||||
url: bbs_path+"/filter.ajax.php",
|
||||
url: g4_bbs_path+"/filter.ajax.php",
|
||||
type: "POST",
|
||||
data: {
|
||||
"subject": "",
|
||||
|
||||
|
Before Width: | Height: | Size: 69 B |
|
Before Width: | Height: | Size: 70 B |
|
Before Width: | Height: | Size: 54 B |
|
Before Width: | Height: | Size: 139 B |
|
Before Width: | Height: | Size: 63 B |
|
Before Width: | Height: | Size: 163 B |
|
Before Width: | Height: | Size: 126 B |
|
Before Width: | Height: | Size: 332 B |
|
Before Width: | Height: | Size: 129 B |
|
Before Width: | Height: | Size: 329 B After Width: | Height: | Size: 76 B |
|
Before Width: | Height: | Size: 331 B After Width: | Height: | Size: 215 B |
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 79 B |
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 80 B |
|
Before Width: | Height: | Size: 320 B |
|
Before Width: | Height: | Size: 72 B |
|
Before Width: | Height: | Size: 405 B |
|
Before Width: | Height: | Size: 426 B |
|
Before Width: | Height: | Size: 96 B |
@ -23,9 +23,9 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||
// if ($list[$i]['file']['count']) { echo "<{$list[$i]['file']['count']}>"; }
|
||||
|
||||
if (isset($list[$i]['icon_new'])) echo " " . $list[$i]['icon_new'];
|
||||
if (isset($list[$i]['icon_hot'])) echo " " . $list[$i]['icon_hot'];
|
||||
if (isset($list[$i]['icon_file'])) echo " " . $list[$i]['icon_file'];
|
||||
if (isset($list[$i]['icon_link'])) echo " " . $list[$i]['icon_link'];
|
||||
if (isset($list[$i]['icon_hot'])) echo " " . $list[$i]['icon_hot'];
|
||||
if (isset($list[$i]['icon_secret'])) echo " " . $list[$i]['icon_secret'];
|
||||
?>
|
||||
</li>
|
||||
|
||||