unmerge 처리

This commit is contained in:
whitedot
2012-12-27 15:05:48 +09:00
278 changed files with 8087 additions and 202 deletions

View File

@ -1,4 +1,4 @@
<?
<?php
// 이 파일은 새로운 파일 생성시 반드시 포함되어야 함
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
@ -71,6 +71,22 @@ var g4_is_ie = navigator.userAgent.toLowerCase().indexOf("msie") != -1;
</script>
<script src="<?=$g4['path']?>/js/jquery-1.4.2.min.js"></script>
<script src="<?=$g4['path']?>/js/common.js"></script>
<script src="<?=$g4['path']?>/js/wrest.js"></script>
<?
if (!empty($g4['js_file'])) {
foreach ($g4['js_file'] as $key=>$value) {
echo "<script src=\"$value\"></script>\n";
}
}
if (!empty($g4['js_code'])) {
foreach ($g4['js_code'] as $key=>$value) {
echo "<script>\n";
echo $value."\n";
echo "</script>\n";
}
}
?>
</head>
<body>
<a id="g4_head"></a>