Merge branch 'master' of github.com:gnuboard/g5
This commit is contained in:
12
common.php
12
common.php
@ -466,13 +466,23 @@ include_once(G5_BBS_PATH.'/visit_insert.inc.php');
|
|||||||
|
|
||||||
|
|
||||||
// common.php 파일을 수정할 필요가 없도록 확장합니다.
|
// common.php 파일을 수정할 필요가 없도록 확장합니다.
|
||||||
|
$extend_file = array();
|
||||||
$tmp = dir(G5_EXTEND_PATH);
|
$tmp = dir(G5_EXTEND_PATH);
|
||||||
while ($entry = $tmp->read()) {
|
while ($entry = $tmp->read()) {
|
||||||
// php 파일만 include 함
|
// php 파일만 include 함
|
||||||
if (preg_match("/(\.php)$/i", $entry))
|
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();
|
ob_start();
|
||||||
|
|
||||||
// 자바스크립트에서 go(-1) 함수를 쓰면 폼값이 사라질때 해당 폼의 상단에 사용하면
|
// 자바스크립트에서 go(-1) 함수를 쓰면 폼값이 사라질때 해당 폼의 상단에 사용하면
|
||||||
|
|||||||
Reference in New Issue
Block a user