remove comments
This commit is contained in:
parent
d96b5a2c6c
commit
7bf0bfd7f8
2 changed files with 6 additions and 6 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
if (!defined("_GNUBOARD_"))
|
if (!defined("_GNUBOARD_"))
|
||||||
exit; // 개별 페이지 접근 불가
|
exit;
|
||||||
include_once(G5_LIB_PATH . '/thumbnail.lib.php');
|
include_once G5_LIB_PATH . '/thumbnail.lib.php';
|
||||||
|
|
||||||
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
add_stylesheet('<link rel="stylesheet" href="' . $board_skin_url . '/style.css">', 0);
|
add_stylesheet('<link rel="stylesheet" href="' . $board_skin_url . '/style.css">', 0);
|
||||||
|
|
@ -115,7 +115,7 @@ add_stylesheet('<link rel="stylesheet" href="' . $board_skin_url . '/style.css">
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
// 코멘트 입출력
|
// 코멘트 입출력
|
||||||
// include_once(G5_BBS_PATH.'/view_comment.php');
|
// include_once G5_BBS_PATH.'/view_comment.php';
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
include_once('./_common.php');
|
include_once './_common.php';
|
||||||
include_once(G5_EDITOR_LIB);
|
include_once G5_EDITOR_LIB;
|
||||||
|
|
||||||
if (!$board['bo_table']) {
|
if (!$board['bo_table']) {
|
||||||
alert('존재하지 않는 게시판입니다.', G5_URL);
|
alert('존재하지 않는 게시판입니다.', G5_URL);
|
||||||
|
|
@ -407,6 +407,6 @@ $autosave_count = autosave_count($member['mb_id']);
|
||||||
$action_url = https_url(G5_BBS_DIR) . "/write_update.php";
|
$action_url = https_url(G5_BBS_DIR) . "/write_update.php";
|
||||||
|
|
||||||
echo '<!-- skin : ' . (G5_IS_MOBILE ? $board['bo_mobile_skin'] : $board['bo_skin']) . ' -->';
|
echo '<!-- skin : ' . (G5_IS_MOBILE ? $board['bo_mobile_skin'] : $board['bo_skin']) . ' -->';
|
||||||
include_once($board_skin_path . '/write.skin.php');
|
include_once $board_skin_path . '/write.skin.php';
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue