Merge branch 'master' of github.com:gnuboard/g5
This commit is contained in:
@ -119,7 +119,9 @@ $menu_key = substr($sub_menu, 0, 3);
|
|||||||
$nl = '';
|
$nl = '';
|
||||||
foreach($menu['menu'.$menu_key] as $key=>$value) {
|
foreach($menu['menu'.$menu_key] as $key=>$value) {
|
||||||
if($key > 0) {
|
if($key > 0) {
|
||||||
if ($menu_key == substr($menu['menu'.$key][0][0], 0, 2)) echo 1;
|
if ($is_admin != 'super' && (!array_key_exists($value[0],$auth) || !strstr($auth[$value[0]], 'r')))
|
||||||
|
continue;
|
||||||
|
|
||||||
echo $nl.'<li><a href="'.$value[2].'">'.$value[1].'</a></li>';
|
echo $nl.'<li><a href="'.$value[2].'">'.$value[1].'</a></li>';
|
||||||
$nl = PHP_EOL;
|
$nl = PHP_EOL;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -489,4 +489,6 @@ header('Last-Modified: ' . $gmnow);
|
|||||||
header('Cache-Control: no-store, no-cache, must-revalidate'); // HTTP/1.1
|
header('Cache-Control: no-store, no-cache, must-revalidate'); // HTTP/1.1
|
||||||
header('Cache-Control: pre-check=0, post-check=0, max-age=0'); // HTTP/1.1
|
header('Cache-Control: pre-check=0, post-check=0, max-age=0'); // HTTP/1.1
|
||||||
header('Pragma: no-cache'); // HTTP/1.0
|
header('Pragma: no-cache'); // HTTP/1.0
|
||||||
|
|
||||||
|
$html_process = new html_process();
|
||||||
?>
|
?>
|
||||||
@ -2170,47 +2170,92 @@ if (!function_exists('file_put_contents')) {
|
|||||||
// HTML 마지막 처리
|
// HTML 마지막 처리
|
||||||
function html_end()
|
function html_end()
|
||||||
{
|
{
|
||||||
global $config, $g5, $member;
|
global $html_process;
|
||||||
|
|
||||||
// 현재접속자 처리
|
return $html_process->run();
|
||||||
$tmp_sql = " select count(*) as cnt from {$g5['login_table']} where lo_ip = '{$_SERVER['REMOTE_ADDR']}' ";
|
|
||||||
$tmp_row = sql_fetch($tmp_sql);
|
|
||||||
|
|
||||||
if ($tmp_row['cnt']) {
|
|
||||||
$tmp_sql = " update {$g5['login_table']} set mb_id = '{$member['mb_id']}', lo_datetime = '".G5_TIME_YMDHIS."', lo_location = '{$g5['lo_location']}', lo_url = '{$g5['lo_url']}' where lo_ip = '{$_SERVER['REMOTE_ADDR']}' ";
|
|
||||||
sql_query($tmp_sql, FALSE);
|
|
||||||
} else {
|
|
||||||
$tmp_sql = " insert into {$g5['login_table']} ( lo_ip, mb_id, lo_datetime, lo_location, lo_url ) values ( '{$_SERVER['REMOTE_ADDR']}', '{$member['mb_id']}', '".G5_TIME_YMDHIS."', '{$g5['lo_location']}', '{$g5['lo_url']}' ) ";
|
|
||||||
sql_query($tmp_sql, FALSE);
|
|
||||||
|
|
||||||
// 시간이 지난 접속은 삭제한다
|
|
||||||
sql_query(" delete from {$g5['login_table']} where lo_datetime < '".date("Y-m-d H:i:s", G5_SERVER_TIME - (60 * $config['cf_login_minutes']))."' ");
|
|
||||||
|
|
||||||
// 부담(overhead)이 있다면 테이블 최적화
|
|
||||||
//$row = sql_fetch(" SHOW TABLE STATUS FROM `$mysql_db` LIKE '$g5['login_table']' ");
|
|
||||||
//if ($row['Data_free'] > 0) sql_query(" OPTIMIZE TABLE $g5['login_table'] ");
|
|
||||||
}
|
|
||||||
|
|
||||||
// 버퍼의 내용에서 body 태그 중간의 외부 css 파일을 CAPTURE 하여 head 태그로 이동시켜준다.
|
|
||||||
$buffer = ob_get_contents();
|
|
||||||
ob_end_clean();
|
|
||||||
preg_match('#<body>(.*)</body>#is', $buffer, $bodys);
|
|
||||||
preg_match_all('/[\n\r]?(<!.*)?(<link[^>]+>).*(<!.*>)?/i', $bodys[0], $links);
|
|
||||||
$stylesheet = '';
|
|
||||||
$links[0] = array_unique($links[0]);
|
|
||||||
foreach ($links[0] as $key=>$link) {
|
|
||||||
//$link = PHP_EOL.$links[0][$i];
|
|
||||||
$stylesheet .= $link;
|
|
||||||
$buffer = preg_replace('#'.$link.'#', '', $buffer);
|
|
||||||
}
|
|
||||||
/*
|
|
||||||
</title>
|
|
||||||
<link rel="stylesheet" href="default.css">
|
|
||||||
밑으로 스킨의 스타일시트가 위치하도록 하게 한다.
|
|
||||||
*/
|
|
||||||
return preg_replace('#(</title>[^<]*<link[^>]+>)#', "$1$stylesheet", $buffer);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function add_stylesheet($stylesheet, $order=0)
|
||||||
|
{
|
||||||
|
global $html_process;
|
||||||
|
|
||||||
|
if(trim($stylesheet))
|
||||||
|
$html_process->merge_stylesheet($stylesheet, $order);
|
||||||
|
}
|
||||||
|
|
||||||
|
class html_process {
|
||||||
|
protected $css = array();
|
||||||
|
|
||||||
|
function merge_stylesheet($stylesheet, $order)
|
||||||
|
{
|
||||||
|
$links = $this->css;
|
||||||
|
$is_merge = true;
|
||||||
|
|
||||||
|
foreach($links as $link) {
|
||||||
|
if($link[1] == $stylesheet) {
|
||||||
|
$is_merge = false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if($is_merge)
|
||||||
|
$this->css[] = array($order, $stylesheet);
|
||||||
|
}
|
||||||
|
|
||||||
|
function run()
|
||||||
|
{
|
||||||
|
global $config, $g5, $member;
|
||||||
|
|
||||||
|
// 현재접속자 처리
|
||||||
|
$tmp_sql = " select count(*) as cnt from {$g5['login_table']} where lo_ip = '{$_SERVER['REMOTE_ADDR']}' ";
|
||||||
|
$tmp_row = sql_fetch($tmp_sql);
|
||||||
|
|
||||||
|
if ($tmp_row['cnt']) {
|
||||||
|
$tmp_sql = " update {$g5['login_table']} set mb_id = '{$member['mb_id']}', lo_datetime = '".G5_TIME_YMDHIS."', lo_location = '{$g5['lo_location']}', lo_url = '{$g5['lo_url']}' where lo_ip = '{$_SERVER['REMOTE_ADDR']}' ";
|
||||||
|
sql_query($tmp_sql, FALSE);
|
||||||
|
} else {
|
||||||
|
$tmp_sql = " insert into {$g5['login_table']} ( lo_ip, mb_id, lo_datetime, lo_location, lo_url ) values ( '{$_SERVER['REMOTE_ADDR']}', '{$member['mb_id']}', '".G5_TIME_YMDHIS."', '{$g5['lo_location']}', '{$g5['lo_url']}' ) ";
|
||||||
|
sql_query($tmp_sql, FALSE);
|
||||||
|
|
||||||
|
// 시간이 지난 접속은 삭제한다
|
||||||
|
sql_query(" delete from {$g5['login_table']} where lo_datetime < '".date("Y-m-d H:i:s", G5_SERVER_TIME - (60 * $config['cf_login_minutes']))."' ");
|
||||||
|
|
||||||
|
// 부담(overhead)이 있다면 테이블 최적화
|
||||||
|
//$row = sql_fetch(" SHOW TABLE STATUS FROM `$mysql_db` LIKE '$g5['login_table']' ");
|
||||||
|
//if ($row['Data_free'] > 0) sql_query(" OPTIMIZE TABLE $g5['login_table'] ");
|
||||||
|
}
|
||||||
|
|
||||||
|
$buffer = ob_get_contents();
|
||||||
|
ob_end_clean();
|
||||||
|
|
||||||
|
$stylesheet = '';
|
||||||
|
$links = $this->css;
|
||||||
|
|
||||||
|
if(!empty($links)) {
|
||||||
|
foreach ($links as $key => $row) {
|
||||||
|
$order[$key] = $row[0];
|
||||||
|
$index[$key] = $key;
|
||||||
|
$style[$key] = $row[1];
|
||||||
|
}
|
||||||
|
|
||||||
|
array_multisort($order, SORT_ASC, $index, SORT_ASC, $links);
|
||||||
|
|
||||||
|
foreach($links as $link) {
|
||||||
|
if(!trim($link[1]))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
$stylesheet .= PHP_EOL.$link[1];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
</title>
|
||||||
|
<link rel="stylesheet" href="default.css">
|
||||||
|
밑으로 스킨의 스타일시트가 위치하도록 하게 한다.
|
||||||
|
*/
|
||||||
|
return preg_replace('#(</title>[^<]*<link[^>]+>)#', "$1$stylesheet", $buffer);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// 휴대폰번호의 숫자만 취한 후 중간에 하이픈(-)을 넣는다.
|
// 휴대폰번호의 숫자만 취한 후 중간에 하이픈(-)을 넣는다.
|
||||||
function hyphen_hp_number($hp)
|
function hyphen_hp_number($hp)
|
||||||
|
|||||||
@ -7,9 +7,10 @@ $colspan = 5;
|
|||||||
if ($is_checkbox) $colspan++;
|
if ($is_checkbox) $colspan++;
|
||||||
if ($is_good) $colspan++;
|
if ($is_good) $colspan++;
|
||||||
if ($is_nogood) $colspan++;
|
if ($is_nogood) $colspan++;
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $board_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$board_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<h2 id="container_title"><?php echo $board['bo_subject'] ?><span class="sound_only"> 목록</span></h2>
|
<h2 id="container_title"><?php echo $board['bo_subject'] ?><span class="sound_only"> 목록</span></h2>
|
||||||
|
|
||||||
|
|||||||
@ -1,9 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||||
include_once(G5_LIB_PATH.'/thumbnail.lib.php');
|
include_once(G5_LIB_PATH.'/thumbnail.lib.php');
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$board_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $board_skin_url ?>/style.css">
|
|
||||||
<script src="<?php echo G5_JS_URL; ?>/viewimageresize.js"></script>
|
<script src="<?php echo G5_JS_URL; ?>/viewimageresize.js"></script>
|
||||||
|
|
||||||
<div id="bo_v_table"><?php echo $board['bo_subject']; ?></div>
|
<div id="bo_v_table"><?php echo $board['bo_subject']; ?></div>
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $board_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$board_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<section id="bo_w">
|
<section id="bo_w">
|
||||||
<h2 id="container_title"><?php echo $g5['title'] ?></h2>
|
<h2 id="container_title"><?php echo $g5['title'] ?></h2>
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
// 회원수는 $row['mb_cnt'];
|
// 회원수는 $row['mb_cnt'];
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$connect_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $connect_skin_url ?>/style.css">
|
|
||||||
|
|
||||||
<?php echo $row['total_cnt'] ?>
|
<?php echo $row['total_cnt'] ?>
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $connect_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$connect_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<div class="tbl_head01 tbl_wrap">
|
<div class="tbl_head01 tbl_wrap">
|
||||||
<table id="current_connect_tbl">
|
<table id="current_connect_tbl">
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $latest_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$latest_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<div class="lt">
|
<div class="lt">
|
||||||
<a href="<?php echo G5_BBS_URL ?>/board.php?bo_table=<?php echo $bo_table ?>" class="lt_title" onclick="return false"><strong><?php echo $bo_subject ?></strong></a>
|
<a href="<?php echo G5_BBS_URL ?>/board.php?bo_table=<?php echo $bo_table ?>" class="lt_title" onclick="return false"><strong><?php echo $bo_subject ?></strong></a>
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<div id="formmail" class="new_win mbskin">
|
<div id="formmail" class="new_win mbskin">
|
||||||
<h1 id="win_title"><?php echo $name ?>님께 메일보내기</h1>
|
<h1 id="win_title"><?php echo $name ?>님께 메일보내기</h1>
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<div id="mb_login" class="mbskin">
|
<div id="mb_login" class="mbskin">
|
||||||
<h1><?php echo $g5['title'] ?></h1>
|
<h1><?php echo $g5['title'] ?></h1>
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<div id="mb_confirm" class="mbskin">
|
<div id="mb_confirm" class="mbskin">
|
||||||
<h1><?php echo $g5['title'] ?></h1>
|
<h1><?php echo $g5['title'] ?></h1>
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<div id="memo_list" class="new_win mbskin">
|
<div id="memo_list" class="new_win mbskin">
|
||||||
<h1 id="win_title"><?php echo $g5['title'] ?></h1>
|
<h1 id="win_title"><?php echo $g5['title'] ?></h1>
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<div id="memo_write" class="new_win mbskin">
|
<div id="memo_write" class="new_win mbskin">
|
||||||
<h1 id="win_title">쪽지보내기</h1>
|
<h1 id="win_title">쪽지보내기</h1>
|
||||||
|
|||||||
@ -9,9 +9,10 @@ else {
|
|||||||
$kind_str = "받는";
|
$kind_str = "받는";
|
||||||
$kind_date = "보낸";
|
$kind_date = "보낸";
|
||||||
}
|
}
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<div id="memo_view" class="new_win mbskin">
|
<div id="memo_view" class="new_win mbskin">
|
||||||
<h1 id="win_title"><?php echo $g5['title'] ?></h1>
|
<h1 id="win_title"><?php echo $g5['title'] ?></h1>
|
||||||
|
|||||||
@ -5,9 +5,10 @@ if ($w == 'x') $delete_str = "댓";
|
|||||||
if ($w == 'u') $g5['title'] = $delete_str."글 수정";
|
if ($w == 'u') $g5['title'] = $delete_str."글 수정";
|
||||||
else if ($w == 'd' || $w == 'x') $g5['title'] = $delete_str."글 삭제";
|
else if ($w == 'd' || $w == 'x') $g5['title'] = $delete_str."글 삭제";
|
||||||
else $g5['title'] = $g5['title'];
|
else $g5['title'] = $g5['title'];
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<div id="pw_confirm" class="mbskin">
|
<div id="pw_confirm" class="mbskin">
|
||||||
<h1><?php echo $g5['title'] ?></h1>
|
<h1><?php echo $g5['title'] ?></h1>
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<div id="find_info" class="new_win mbskin">
|
<div id="find_info" class="new_win mbskin">
|
||||||
<h1 id="win_title">아이디/비밀번호 찾기</h1>
|
<h1 id="win_title">아이디/비밀번호 찾기</h1>
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<div id="profile" class="new_win mbskin">
|
<div id="profile" class="new_win mbskin">
|
||||||
<h1 id="win_title"><?php echo $mb_nick ?>님의 프로필</h1>
|
<h1 id="win_title"><?php echo $mb_nick ?>님의 프로필</h1>
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<div class="mbskin">
|
<div class="mbskin">
|
||||||
|
|
||||||
@ -35,7 +36,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
|||||||
</form>
|
</form>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
function fregister_submit(f)
|
function fregister_submit(f)
|
||||||
{
|
{
|
||||||
if (!f.agree.checked) {
|
if (!f.agree.checked) {
|
||||||
alert("회원가입약관의 내용에 동의하셔야 회원가입 하실 수 있습니다.");
|
alert("회원가입약관의 내용에 동의하셔야 회원가입 하실 수 있습니다.");
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<div class="mbskin">
|
<div class="mbskin">
|
||||||
<script src="<?php echo G5_JS_URL ?>/jquery.register_form.js"></script>
|
<script src="<?php echo G5_JS_URL ?>/jquery.register_form.js"></script>
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<div id="reg_result" class="mbskin">
|
<div id="reg_result" class="mbskin">
|
||||||
|
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<div id="scrap" class="new_win mbskin">
|
<div id="scrap" class="new_win mbskin">
|
||||||
<h1 id="win_title"><?php echo $g5['title'] ?></h1>
|
<h1 id="win_title"><?php echo $g5['title'] ?></h1>
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<div id="scrap_do" class="new_win mbskin">
|
<div id="scrap_do" class="new_win mbskin">
|
||||||
<h1 id="win_title">스크랩하기</h1>
|
<h1 id="win_title">스크랩하기</h1>
|
||||||
|
|||||||
@ -1,9 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<!-- 우편번호 찾기 시작 { -->
|
<!-- 우편번호 찾기 시작 { -->
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
|
||||||
<script src="<?php echo G5_JS_URL; ?>/zip.js"></script>
|
<script src="<?php echo G5_JS_URL; ?>/zip.js"></script>
|
||||||
|
|
||||||
<div id="post_code" class="new_win mbskin">
|
<div id="post_code" class="new_win mbskin">
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $new_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$new_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<!-- 전체게시물 검색 시작 { -->
|
<!-- 전체게시물 검색 시작 { -->
|
||||||
<fieldset id="new_sch">
|
<fieldset id="new_sch">
|
||||||
@ -41,7 +42,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
|||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<?php
|
<?php
|
||||||
for ($i=0; $i<count($list); $i++)
|
for ($i=0; $i<count($list); $i++)
|
||||||
{
|
{
|
||||||
$gr_subject = cut_str($list[$i]['gr_subject'], 20);
|
$gr_subject = cut_str($list[$i]['gr_subject'], 20);
|
||||||
$bo_subject = cut_str($list[$i]['bo_subject'], 20);
|
$bo_subject = cut_str($list[$i]['bo_subject'], 20);
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $outlogin_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$outlogin_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<aside id="ol_before" class="ol">
|
<aside id="ol_before" class="ol">
|
||||||
<h2>회원로그인</h2>
|
<h2>회원로그인</h2>
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $outlogin_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$outlogin_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<!-- 로그인 후 외부로그인 시작 -->
|
<!-- 로그인 후 외부로그인 시작 -->
|
||||||
<aside id="ol_after" class="ol">
|
<aside id="ol_after" class="ol">
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $poll_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$poll_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<form name="fpoll" action="<?php echo G5_BBS_URL ?>/poll_update.php" onsubmit="return fpoll_submit(this);" method="post">
|
<form name="fpoll" action="<?php echo G5_BBS_URL ?>/poll_update.php" onsubmit="return fpoll_submit(this);" method="post">
|
||||||
<input type="hidden" name="po_id" value="<?php echo $po_id ?>">
|
<input type="hidden" name="po_id" value="<?php echo $po_id ?>">
|
||||||
@ -46,8 +47,8 @@ function fpoll_submit(f)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
var new_win = window.open("about:blank", "win_poll", "width=616,height=500,scrollbars=yes,resizable=yes");
|
var new_win = window.open("about:blank", "win_poll", "width=616,height=500,scrollbars=yes,resizable=yes");
|
||||||
f.target = "win_poll";
|
f.target = "win_poll";
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $poll_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$poll_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<div id="poll_result" class="new_win">
|
<div id="poll_result" class="new_win">
|
||||||
<h1 id="win_title"><?php echo $g5['title'] ?></h1>
|
<h1 id="win_title"><?php echo $g5['title'] ?></h1>
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $popular_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$popular_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<aside id="popular">
|
<aside id="popular">
|
||||||
<div>
|
<div>
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $qa_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$qa_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<div id="bo_list">
|
<div id="bo_list">
|
||||||
<?php if ($category_option) { ?>
|
<?php if ($category_option) { ?>
|
||||||
|
|||||||
@ -1,9 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||||
include_once(G5_LIB_PATH.'/thumbnail.lib.php');
|
include_once(G5_LIB_PATH.'/thumbnail.lib.php');
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$qa_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $qa_skin_url ?>/style.css">
|
|
||||||
<script src="<?php echo G5_JS_URL; ?>/viewimageresize.js"></script>
|
<script src="<?php echo G5_JS_URL; ?>/viewimageresize.js"></script>
|
||||||
|
|
||||||
<!-- 게시물 읽기 시작 { -->
|
<!-- 게시물 읽기 시작 { -->
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $qa_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$qa_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<section id="bo_w">
|
<section id="bo_w">
|
||||||
<!-- 게시물 작성/수정 시작 { -->
|
<!-- 게시물 작성/수정 시작 { -->
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $search_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$search_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<form name="fsearch" onsubmit="return fsearch_submit(this);" method="get">
|
<form name="fsearch" onsubmit="return fsearch_submit(this);" method="get">
|
||||||
<input type="hidden" name="srows" value="<?php echo $srows ?>">
|
<input type="hidden" name="srows" value="<?php echo $srows ?>">
|
||||||
@ -49,7 +50,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
|||||||
f.stx.focus();
|
f.stx.focus();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
f.action = "";
|
f.action = "";
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -112,7 +113,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
|||||||
<ul>
|
<ul>
|
||||||
<?php
|
<?php
|
||||||
for ($i=0; $i<count($list[$idx]) && $k<$rows; $i++, $k++) {
|
for ($i=0; $i<count($list[$idx]) && $k<$rows; $i++, $k++) {
|
||||||
if ($list[$idx][$i][wr_is_comment])
|
if ($list[$idx][$i][wr_is_comment])
|
||||||
{
|
{
|
||||||
$comment_def = "<span class=\"cmt_def\">댓글</span>";
|
$comment_def = "<span class=\"cmt_def\">댓글</span>";
|
||||||
$comment_href = "#c_".$list[$idx][$i][wr_id];
|
$comment_href = "#c_".$list[$idx][$i][wr_id];
|
||||||
|
|||||||
@ -2,9 +2,10 @@
|
|||||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||||
|
|
||||||
global $is_admin;
|
global $is_admin;
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $visit_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$visit_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<aside id="visit">
|
<aside id="visit">
|
||||||
<div>
|
<div>
|
||||||
|
|||||||
@ -7,9 +7,10 @@ $colspan = 5;
|
|||||||
if ($is_checkbox) $colspan++;
|
if ($is_checkbox) $colspan++;
|
||||||
if ($is_good) $colspan++;
|
if ($is_good) $colspan++;
|
||||||
if ($is_nogood) $colspan++;
|
if ($is_nogood) $colspan++;
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $board_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$board_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<h2 id="container_title"><?php echo $board['bo_subject'] ?><span class="sound_only"> 목록</span></h2>
|
<h2 id="container_title"><?php echo $board['bo_subject'] ?><span class="sound_only"> 목록</span></h2>
|
||||||
|
|
||||||
|
|||||||
@ -1,9 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||||
include_once(G5_LIB_PATH.'/thumbnail.lib.php');
|
include_once(G5_LIB_PATH.'/thumbnail.lib.php');
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$board_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $board_skin_url ?>/style.css">
|
|
||||||
<script src="<?php echo G5_JS_URL; ?>/viewimageresize.js"></script>
|
<script src="<?php echo G5_JS_URL; ?>/viewimageresize.js"></script>
|
||||||
|
|
||||||
<!-- 게시물 읽기 시작 { -->
|
<!-- 게시물 읽기 시작 { -->
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $board_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$board_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<section id="bo_w">
|
<section id="bo_w">
|
||||||
<h2 id="container_title"><?php echo $g5['title'] ?></h2>
|
<h2 id="container_title"><?php echo $g5['title'] ?></h2>
|
||||||
|
|||||||
@ -1,9 +1,10 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
include_once(G5_LIB_PATH.'/thumbnail.lib.php');
|
include_once(G5_LIB_PATH.'/thumbnail.lib.php');
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $board_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$board_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<h2 id="container_title"><?php echo $board['bo_subject'] ?><span class="sound_only"> 목록</span></h2>
|
<h2 id="container_title"><?php echo $board['bo_subject'] ?><span class="sound_only"> 목록</span></h2>
|
||||||
|
|
||||||
|
|||||||
@ -1,9 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||||
include_once(G5_LIB_PATH.'/thumbnail.lib.php');
|
include_once(G5_LIB_PATH.'/thumbnail.lib.php');
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$board_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $board_skin_url ?>/style.css">
|
|
||||||
<script src="<?php echo G5_JS_URL; ?>/viewimageresize.js"></script>
|
<script src="<?php echo G5_JS_URL; ?>/viewimageresize.js"></script>
|
||||||
|
|
||||||
<!-- 게시물 읽기 시작 { -->
|
<!-- 게시물 읽기 시작 { -->
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $board_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$board_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<section id="bo_w">
|
<section id="bo_w">
|
||||||
<h2 id="container_title"><?php echo $g5['title'] ?></h2>
|
<h2 id="container_title"><?php echo $g5['title'] ?></h2>
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
// 회원수는 $row['mb_cnt'];
|
// 회원수는 $row['mb_cnt'];
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$connect_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $connect_skin_url ?>/style.css">
|
|
||||||
|
|
||||||
<?php echo $row['total_cnt'] ?>
|
<?php echo $row['total_cnt'] ?>
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $connect_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$connect_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<!-- 현재접속자 목록 시작 { -->
|
<!-- 현재접속자 목록 시작 { -->
|
||||||
<div class="tbl_head01 tbl_wrap">
|
<div class="tbl_head01 tbl_wrap">
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $latest_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$latest_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<!-- <?php echo $bo_subject; ?> 최신글 시작 { -->
|
<!-- <?php echo $bo_subject; ?> 최신글 시작 { -->
|
||||||
<div class="lt">
|
<div class="lt">
|
||||||
|
|||||||
@ -1,10 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<!-- 폼메일 시작 { -->
|
<!-- 폼메일 시작 { -->
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
|
||||||
|
|
||||||
<div id="formmail" class="new_win mbskin">
|
<div id="formmail" class="new_win mbskin">
|
||||||
<h1 id="win_title"><?php echo $name ?>님께 메일보내기</h1>
|
<h1 id="win_title"><?php echo $name ?>님께 메일보내기</h1>
|
||||||
|
|
||||||
|
|||||||
@ -1,10 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<!-- 로그인 시작 { -->
|
<!-- 로그인 시작 { -->
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
|
||||||
|
|
||||||
<div id="mb_login" class="mbskin">
|
<div id="mb_login" class="mbskin">
|
||||||
<h1><?php echo $g5['title'] ?></h1>
|
<h1><?php echo $g5['title'] ?></h1>
|
||||||
|
|
||||||
|
|||||||
@ -1,10 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<!-- 회원 비밀번호 확인 시작 { -->
|
<!-- 회원 비밀번호 확인 시작 { -->
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
|
||||||
|
|
||||||
<div id="mb_confirm" class="mbskin">
|
<div id="mb_confirm" class="mbskin">
|
||||||
<h1><?php echo $g5['title'] ?></h1>
|
<h1><?php echo $g5['title'] ?></h1>
|
||||||
|
|
||||||
|
|||||||
@ -1,10 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<!-- 쪽지 목록 시작 { -->
|
<!-- 쪽지 목록 시작 { -->
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
|
||||||
|
|
||||||
<div id="memo_list" class="new_win mbskin">
|
<div id="memo_list" class="new_win mbskin">
|
||||||
<h1 id="win_title"><?php echo $g5['title'] ?></h1>
|
<h1 id="win_title"><?php echo $g5['title'] ?></h1>
|
||||||
|
|
||||||
|
|||||||
@ -1,10 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<!-- 쪽지 보내기 시작 { -->
|
<!-- 쪽지 보내기 시작 { -->
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
|
||||||
|
|
||||||
<div id="memo_write" class="new_win mbskin">
|
<div id="memo_write" class="new_win mbskin">
|
||||||
<h1 id="win_title">쪽지 보내기</h1>
|
<h1 id="win_title">쪽지 보내기</h1>
|
||||||
|
|
||||||
|
|||||||
@ -9,11 +9,12 @@ else {
|
|||||||
$kind_str = "받는";
|
$kind_str = "받는";
|
||||||
$kind_date = "보낸";
|
$kind_date = "보낸";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<!-- 쪽지보기 시작 { -->
|
<!-- 쪽지보기 시작 { -->
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
|
||||||
|
|
||||||
<div id="memo_view" class="new_win mbskin">
|
<div id="memo_view" class="new_win mbskin">
|
||||||
<h1 id="win_title"><?php echo $g5['title'] ?></h1>
|
<h1 id="win_title"><?php echo $g5['title'] ?></h1>
|
||||||
|
|
||||||
|
|||||||
@ -5,11 +5,12 @@ if ($w == 'x') $delete_str = "댓";
|
|||||||
if ($w == 'u') $g5['title'] = $delete_str."글 수정";
|
if ($w == 'u') $g5['title'] = $delete_str."글 수정";
|
||||||
else if ($w == 'd' || $w == 'x') $g5['title'] = $delete_str."글 삭제";
|
else if ($w == 'd' || $w == 'x') $g5['title'] = $delete_str."글 삭제";
|
||||||
else $g5['title'] = $g5['title'];
|
else $g5['title'] = $g5['title'];
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<!-- 비밀번호 확인 시작 { -->
|
<!-- 비밀번호 확인 시작 { -->
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
|
||||||
|
|
||||||
<div id="pw_confirm" class="mbskin">
|
<div id="pw_confirm" class="mbskin">
|
||||||
<h1><?php echo $g5['title'] ?></h1>
|
<h1><?php echo $g5['title'] ?></h1>
|
||||||
<p>
|
<p>
|
||||||
|
|||||||
@ -1,10 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<!-- 회원정보 찾기 시작 { -->
|
<!-- 회원정보 찾기 시작 { -->
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
|
||||||
|
|
||||||
<div id="find_info" class="new_win mbskin">
|
<div id="find_info" class="new_win mbskin">
|
||||||
<h1 id="win_title">회원정보 찾기</h1>
|
<h1 id="win_title">회원정보 찾기</h1>
|
||||||
|
|
||||||
|
|||||||
@ -1,10 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<!-- 자기소개 시작 { -->
|
<!-- 자기소개 시작 { -->
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
|
||||||
|
|
||||||
<div id="profile" class="new_win mbskin">
|
<div id="profile" class="new_win mbskin">
|
||||||
<h1 id="win_title"><?php echo $mb_nick ?>님의 프로필</h1>
|
<h1 id="win_title"><?php echo $mb_nick ?>님의 프로필</h1>
|
||||||
|
|
||||||
|
|||||||
@ -1,10 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<!-- 회원가입약관 동의 시작 { -->
|
<!-- 회원가입약관 동의 시작 { -->
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
|
||||||
|
|
||||||
<div class="mbskin">
|
<div class="mbskin">
|
||||||
<form name="fregister" id="fregister" action="<?php echo $register_action_url ?>" onsubmit="return fregister_submit(this);" method="POST" autocomplete="off">
|
<form name="fregister" id="fregister" action="<?php echo $register_action_url ?>" onsubmit="return fregister_submit(this);" method="POST" autocomplete="off">
|
||||||
|
|
||||||
@ -35,7 +36,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
|||||||
</form>
|
</form>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
function fregister_submit(f)
|
function fregister_submit(f)
|
||||||
{
|
{
|
||||||
if (!f.agree.checked) {
|
if (!f.agree.checked) {
|
||||||
alert("회원가입약관의 내용에 동의하셔야 회원가입 하실 수 있습니다.");
|
alert("회원가입약관의 내용에 동의하셔야 회원가입 하실 수 있습니다.");
|
||||||
|
|||||||
@ -1,10 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<!-- 회원정보 입력/수정 시작 { -->
|
<!-- 회원정보 입력/수정 시작 { -->
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
|
||||||
|
|
||||||
<div class="mbskin">
|
<div class="mbskin">
|
||||||
|
|
||||||
<script src="<?php echo G5_JS_URL ?>/jquery.register_form.js"></script>
|
<script src="<?php echo G5_JS_URL ?>/jquery.register_form.js"></script>
|
||||||
|
|||||||
@ -1,10 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<!-- 회원가입결과 시작 { -->
|
<!-- 회원가입결과 시작 { -->
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
|
||||||
|
|
||||||
<div id="reg_result" class="mbskin">
|
<div id="reg_result" class="mbskin">
|
||||||
|
|
||||||
<div id="result_logo"><img src="<?php echo $member_skin_url ?>/img/reg_result_logo.jpg" alt=""></div>
|
<div id="result_logo"><img src="<?php echo $member_skin_url ?>/img/reg_result_logo.jpg" alt=""></div>
|
||||||
|
|||||||
@ -1,10 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<!-- 스크랩 목록 시작 { -->
|
<!-- 스크랩 목록 시작 { -->
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
|
||||||
|
|
||||||
<div id="scrap" class="new_win mbskin">
|
<div id="scrap" class="new_win mbskin">
|
||||||
<h1 id="win_title"><?php echo $g5['title'] ?></h1>
|
<h1 id="win_title"><?php echo $g5['title'] ?></h1>
|
||||||
|
|
||||||
|
|||||||
@ -1,10 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<!-- 스크랩 시작 { -->
|
<!-- 스크랩 시작 { -->
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
|
||||||
|
|
||||||
<div id="scrap_do" class="new_win mbskin">
|
<div id="scrap_do" class="new_win mbskin">
|
||||||
<h1 id="win_title">스크랩하기</h1>
|
<h1 id="win_title">스크랩하기</h1>
|
||||||
|
|
||||||
@ -23,7 +24,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
|||||||
<tr>
|
<tr>
|
||||||
<th scope="row"><label for="wr_content">댓글</label></th>
|
<th scope="row"><label for="wr_content">댓글</label></th>
|
||||||
<td><textarea name="wr_content" id="wr_content"></textarea></td>
|
<td><textarea name="wr_content" id="wr_content"></textarea></td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -1,9 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<!-- 우편번호 찾기 시작 { -->
|
<!-- 우편번호 찾기 시작 { -->
|
||||||
<link rel="stylesheet" href="<?php echo $member_skin_url; ?>/style.css">
|
|
||||||
<script src="<?php echo G5_JS_URL; ?>/zip.js"></script>
|
<script src="<?php echo G5_JS_URL; ?>/zip.js"></script>
|
||||||
|
|
||||||
<div id="post_code" class="new_win mbskin">
|
<div id="post_code" class="new_win mbskin">
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $new_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$new_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<!-- 전체게시물 검색 시작 { -->
|
<!-- 전체게시물 검색 시작 { -->
|
||||||
<fieldset id="new_sch">
|
<fieldset id="new_sch">
|
||||||
@ -63,7 +64,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
|||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<?php
|
<?php
|
||||||
for ($i=0; $i<count($list); $i++)
|
for ($i=0; $i<count($list); $i++)
|
||||||
{
|
{
|
||||||
$num = $total_count - ($page - 1) * $config['cf_page_rows'] - $i;
|
$num = $total_count - ($page - 1) * $config['cf_page_rows'] - $i;
|
||||||
$gr_subject = cut_str($list[$i]['gr_subject'], 20);
|
$gr_subject = cut_str($list[$i]['gr_subject'], 20);
|
||||||
|
|||||||
@ -1,10 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$outlogin_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<!-- 로그인 전 아웃로그인 시작 { -->
|
<!-- 로그인 전 아웃로그인 시작 { -->
|
||||||
<link rel="stylesheet" href="<?php echo $outlogin_skin_url ?>/style.css">
|
|
||||||
|
|
||||||
<section id="ol_before" class="ol">
|
<section id="ol_before" class="ol">
|
||||||
<h2>회원로그인</h2>
|
<h2>회원로그인</h2>
|
||||||
<form name="foutlogin" action="<?php echo $outlogin_action_url ?>" onsubmit="return fhead_submit(this);" method="post" autocomplete="off">
|
<form name="foutlogin" action="<?php echo $outlogin_action_url ?>" onsubmit="return fhead_submit(this);" method="post" autocomplete="off">
|
||||||
|
|||||||
@ -1,5 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$outlogin_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<!-- 로그인 후 아웃로그인 시작 { -->
|
<!-- 로그인 후 아웃로그인 시작 { -->
|
||||||
|
|||||||
@ -1,10 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$poll_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<!-- 설문조사 시작 { -->
|
<!-- 설문조사 시작 { -->
|
||||||
<link rel="stylesheet" href="<?php echo $poll_skin_url ?>/style.css">
|
|
||||||
|
|
||||||
<form name="fpoll" action="<?php echo G5_BBS_URL ?>/poll_update.php" onsubmit="return fpoll_submit(this);" method="post">
|
<form name="fpoll" action="<?php echo G5_BBS_URL ?>/poll_update.php" onsubmit="return fpoll_submit(this);" method="post">
|
||||||
<input type="hidden" name="po_id" value="<?php echo $po_id ?>">
|
<input type="hidden" name="po_id" value="<?php echo $po_id ?>">
|
||||||
<input type="hidden" name="skin_dir" value="<?php echo $skin_dir ?>">
|
<input type="hidden" name="skin_dir" value="<?php echo $skin_dir ?>">
|
||||||
@ -47,8 +48,8 @@ function fpoll_submit(f)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
var new_win = window.open("about:blank", "win_poll", "width=616,height=500,scrollbars=yes,resizable=yes");
|
var new_win = window.open("about:blank", "win_poll", "width=616,height=500,scrollbars=yes,resizable=yes");
|
||||||
f.target = "win_poll";
|
f.target = "win_poll";
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,10 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$poll_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<!-- 설문조사 결과 시작 { -->
|
<!-- 설문조사 결과 시작 { -->
|
||||||
<link rel="stylesheet" href="<?php echo $poll_skin_url ?>/style.css">
|
|
||||||
|
|
||||||
<div id="poll_result" class="new_win">
|
<div id="poll_result" class="new_win">
|
||||||
<h1 id="win_title"><?php echo $g5['title'] ?></h1>
|
<h1 id="win_title"><?php echo $g5['title'] ?></h1>
|
||||||
|
|
||||||
|
|||||||
@ -1,10 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$popular_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<!-- 인기검색어 시작 { -->
|
<!-- 인기검색어 시작 { -->
|
||||||
<link rel="stylesheet" href="<?php echo $popular_skin_url ?>/style.css">
|
|
||||||
|
|
||||||
<section id="popular">
|
<section id="popular">
|
||||||
<div>
|
<div>
|
||||||
<h2>인기검색어</h2>
|
<h2>인기검색어</h2>
|
||||||
|
|||||||
@ -5,9 +5,10 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
|||||||
$colspan = 6;
|
$colspan = 6;
|
||||||
|
|
||||||
if ($is_checkbox) $colspan++;
|
if ($is_checkbox) $colspan++;
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $qa_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$qa_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<div id="bo_list">
|
<div id="bo_list">
|
||||||
<?php if ($category_option) { ?>
|
<?php if ($category_option) { ?>
|
||||||
|
|||||||
@ -1,9 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||||
include_once(G5_LIB_PATH.'/thumbnail.lib.php');
|
include_once(G5_LIB_PATH.'/thumbnail.lib.php');
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$qa_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $qa_skin_url ?>/style.css">
|
|
||||||
<script src="<?php echo G5_JS_URL; ?>/viewimageresize.js"></script>
|
<script src="<?php echo G5_JS_URL; ?>/viewimageresize.js"></script>
|
||||||
|
|
||||||
<!-- 게시물 읽기 시작 { -->
|
<!-- 게시물 읽기 시작 { -->
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="<?php echo $qa_skin_url ?>/style.css">
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$qa_skin_url.'/style.css">', 0);
|
||||||
|
?>
|
||||||
|
|
||||||
<section id="bo_w">
|
<section id="bo_w">
|
||||||
<!-- 게시물 작성/수정 시작 { -->
|
<!-- 게시물 작성/수정 시작 { -->
|
||||||
|
|||||||
@ -1,10 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$search_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<!-- 전체검색 시작 { -->
|
<!-- 전체검색 시작 { -->
|
||||||
<link rel="stylesheet" href="<?php echo $search_skin_url ?>/style.css">
|
|
||||||
|
|
||||||
<form name="fsearch" onsubmit="return fsearch_submit(this);" method="get">
|
<form name="fsearch" onsubmit="return fsearch_submit(this);" method="get">
|
||||||
<input type="hidden" name="srows" value="<?php echo $srows ?>">
|
<input type="hidden" name="srows" value="<?php echo $srows ?>">
|
||||||
<fieldset id="sch_res_detail">
|
<fieldset id="sch_res_detail">
|
||||||
@ -48,7 +49,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
|||||||
f.stx.focus();
|
f.stx.focus();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
f.action = "";
|
f.action = "";
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -108,7 +109,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
|||||||
<ul>
|
<ul>
|
||||||
<?php
|
<?php
|
||||||
for ($i=0; $i<count($list[$idx]) && $k<$rows; $i++, $k++) {
|
for ($i=0; $i<count($list[$idx]) && $k<$rows; $i++, $k++) {
|
||||||
if ($list[$idx][$i][wr_is_comment])
|
if ($list[$idx][$i][wr_is_comment])
|
||||||
{
|
{
|
||||||
$comment_def = "<span class=\"cmt_def\">댓글 | </span>";
|
$comment_def = "<span class=\"cmt_def\">댓글 | </span>";
|
||||||
$comment_href = "#c_".$list[$idx][$i][wr_id];
|
$comment_href = "#c_".$list[$idx][$i][wr_id];
|
||||||
|
|||||||
@ -2,11 +2,12 @@
|
|||||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||||
|
|
||||||
global $is_admin;
|
global $is_admin;
|
||||||
|
|
||||||
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
|
add_stylesheet('<link rel="stylesheet" href="'.$visit_skin_url.'/style.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<!-- 접속자집계 시작 { -->
|
<!-- 접속자집계 시작 { -->
|
||||||
<link rel="stylesheet" href="<?php echo $visit_skin_url ?>/style.css">
|
|
||||||
|
|
||||||
<section id="visit">
|
<section id="visit">
|
||||||
<div>
|
<div>
|
||||||
<h2>접속자집계</h2>
|
<h2>접속자집계</h2>
|
||||||
|
|||||||
Reference in New Issue
Block a user