increaseRefresh 수정

파일마다 Session 받아오는 코드가 잘못 된 경우 수정
This commit is contained in:
2018-04-05 01:34:56 +09:00
parent fae86dbff8
commit b3e621fbfd
26 changed files with 71 additions and 1056 deletions
+6 -8
View File
@@ -5,9 +5,9 @@ include "lib.php";
include "func.php";
$connect=dbConn();
if(Session::getUserGrade() < 5) {
echo "<!DOCTYPE html>
$session = Session::requireGameLogin()->setReadOnly();
if($session->userGrade < 5) {
?><!DOCTYPE html>
<!DOCTYPE html>
<html>
<head>
@@ -17,12 +17,10 @@ if(Session::getUserGrade() < 5) {
</head>
<body>
관리자가 아닙니다.<br>
";
echo banner();
echo "
<?=banner()?>
</body>
</html>";
</html>
<?php
exit();
}