Merge branch 'g4s'

This commit is contained in:
chicpro
2013-08-08 16:09:21 +09:00
37 changed files with 529 additions and 213 deletions

View File

@ -1,3 +1,6 @@
@charset "utf-8";
/* SIR 지운아빠 */
/* 게시판 목록 */
#bo_list_title {padding:0 1em}

View File

@ -1,3 +1,6 @@
@charset "utf-8";
/* SIR 지운아빠 */
/* 갤러리 목록 */
#bo_img h2 {margin:0;padding:0;width:0;height:0;font-size:0;line-height:0;overflow:hidden}
#bo_img_list {margin:1em 0 0;padding:0 1em;list-style:none}

View File

@ -1,3 +1,6 @@
@charset "utf-8";
/* SIR 지운아빠 */
/* 현재접속자 */
#current_connect_tbl {}
#current_connect_tbl th:nth-of-type(1) {width:50px}

View File

@ -1,3 +1,6 @@
@charset "utf-8";
/* SIR 지운아빠 */
/* 최근게시물 스킨 (latest) */
.lat {position:relative;margin:0 0 1em;padding:0 1em 1.5em;border-bottom:1px solid #ddd}
.lat ul {margin:0 0 1em;padding:0;list-style:none}

View File

@ -1,3 +1,6 @@
@charset "utf-8";
/* SIR 지운아빠 */
/* 회원가입 약관 */
#fregister section {padding:1.5em;border-bottom:1px solid #eee;background:#fafafa}
#fregister h2 {margin:0 0 1.5em;text-align:center}

View File

@ -1,3 +1,6 @@
@charset "utf-8";
/* SIR 지운아빠 */
/* 새글 */
#new_sch {margin:0 0 0.3em;padding:0.3em 0.7em}
#new_tbl {}

View File

@ -1,3 +1,6 @@
@charset "utf-8";
/* SIR 지운아빠 */
/* 아웃로그인 */
.ol {position:relative;margin:0 0 1em;padding:0 0.5em 0.5em;border-bottom:1px solid #e7f1ed}
.ol h2 {width:0;height:0;overflow:hidden}

View File

@ -1,3 +1,6 @@
@charset "utf-8";
/* SIR 지운아빠 */
/* 설문조사 스킨 */
#poll {margin:1em 0 0;padding:0 0 1em}
#poll header {position:relative;padding:0 0.5em}

View File

@ -1,3 +1,6 @@
@charset "utf-8";
/* SIR 지운아빠 */
/* 인기검색어 */
#popular {background:#515151}
#popular div {zoom:1}

View File

@ -1,3 +1,6 @@
@charset "utf-8";
/* SIR 지운아빠 */
/* 전체검색결과 스킨 */
#sch_res_detail {padding:0 0 1em;border-bottom:1px solid #e9e9e9;text-align:center}
#sch_res_detail legend {position:absolute;font-size:0;line-height:0;overflow:hidden}

View File

@ -1,3 +1,6 @@
@charset "utf-8";
/* SIR 지운아빠 */
#visit {background:#444}
#visit div {zoom:1}
#visit div:after {display:block;visibility:hidden;clear:both;content:""}

View File

@ -40,7 +40,27 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
</div>
</footer>
<a href="<?php echo $_SERVER['PHP_SELF'].($_SERVER['QUERY_STRING']?'?'.str_replace("&", "&amp;", $_SERVER['QUERY_STRING']).'&amp;':'?').'device=pc'; ?>" id="device_change">PC 버전으로 보기</a>
<?php
$seq = 0;
$href = $_SERVER['PHP_SELF'];
if($_SERVER['QUERY_STRING']) {
$sep = '?';
foreach($_GET as $key=>$val) {
if($key == 'device')
continue;
$href .= $sep.$key.'='.$val;
$sep = '&amp;';
$seq++;
}
}
if($seq)
$href .= '&amp;device=pc';
else
$href .= '?device=pc';
?>
<a href="<?php echo $href; ?>" id="device_change">PC 버전으로 보기</a>
<?php
include_once(G4_PATH."/tail.sub.php");