diff --git a/common.php b/common.php index 5dd46b317..e28288fe8 100644 --- a/common.php +++ b/common.php @@ -466,13 +466,23 @@ include_once(G5_BBS_PATH.'/visit_insert.inc.php'); // common.php 파일을 수정할 필요가 없도록 확장합니다. +$extend_file = array(); $tmp = dir(G5_EXTEND_PATH); while ($entry = $tmp->read()) { // php 파일만 include 함 if (preg_match("/(\.php)$/i", $entry)) - include_once(G5_EXTEND_PATH.'/'.$entry); + $extend_file[] = $entry; } +if(!empty($extend_file) && is_array($extend_file)) { + natsort($extend_file); + + foreach($extend_file as $file) { + include_once(G5_EXTEND_PATH.'/'.$file); + } +} +unset($extend_file); + ob_start(); // 자바스크립트에서 go(-1) 함수를 쓰면 폼값이 사라질때 해당 폼의 상단에 사용하면