js, css 캐시 문제로 printJS, printCSS 함수를 이용하도록 변경

This commit is contained in:
2018-05-12 16:09:32 +09:00
parent 451a759cca
commit 288be33eac
80 changed files with 330 additions and 2844 deletions
+6 -2
View File
@@ -64,9 +64,10 @@ function extractMissingPostToGlobals()
{
$result = [];
if (isset($_POST) && count($_POST) > 0) {
foreach($_POST as $key=>$val){
if(is_numeric($key)){
continue;
}
if(isset($GLOBALS[$key])){
continue;
}
@@ -77,6 +78,9 @@ function extractMissingPostToGlobals()
if (isset($_GET) && count($_GET) > 0) {
foreach($_GET as $key=>$val){
if(is_numeric($key)){
continue;
}
if(isset($GLOBALS[$key])){
continue;
}