util 클래스 명을 PSR1에 맞게 Util로 재 명명

This commit is contained in:
2018-03-24 21:31:31 +09:00
parent 002f9ba6cf
commit b5cba27df9
26 changed files with 110 additions and 110 deletions
+4 -4
View File
@@ -12,10 +12,10 @@ if(Session::getUserGrade(true) < 5){
if(file_exists("d_setting/conf.php")) error("이미 conf.php가 생성되어 있습니다.<br><br>재설치하려면 해당 파일을 지우세요");
$hostname = util::array_get($_POST['hostname'], '');
$user_id = util::array_get($_POST['user_id'], '');
$password = util::array_get($_POST['password'], '');
$dbname = util::array_get($_POST['dbname'], '');
$hostname = Util::array_get($_POST['hostname'], '');
$user_id = Util::array_get($_POST['user_id'], '');
$password = Util::array_get($_POST['password'], '');
$dbname = Util::array_get($_POST['dbname'], '');
// 호스트네임, 아이디, DB네임, 비밀번호의 공백여부 검사
if(isBlank($hostname)) Error("HostName을 입력하세요","");