불필요한 PHP 5.1 이하 코드 삭제
json_encode, json_decode 는 PHP 5.2 부터 PHP 코어에 내장되어있습니다. https://php-legacy-docs.zend.com/manual/php5/en/json.requirements https://php-legacy-docs.zend.com/manual/php5/en/book.json
This commit is contained in:
@ -1,7 +1,6 @@
|
||||
<?php
|
||||
$sub_menu = "100280";
|
||||
include_once('./_common.php');
|
||||
include_once(G5_LIB_PATH.'/json.lib.php');
|
||||
|
||||
$data = array();
|
||||
$data['error'] = '';
|
||||
@ -182,4 +181,4 @@ if($type == 'board') {
|
||||
$data['error'] = '적용할 테마 설정이 없습니다.';
|
||||
}
|
||||
|
||||
die(json_encode($data));
|
||||
die(json_encode($data));
|
||||
|
||||
Reference in New Issue
Block a user