서버 선택 리스트 재작성

This commit is contained in:
2018-03-17 05:12:11 +09:00
parent fc8dc09945
commit cd1456caa7
8 changed files with 238 additions and 93 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ require_once('_common.php');
class _Setting {
private $basepath;
private $settingFile;
private $exist = 0;
private $exist = false;
public function __construct($basepath) {
@@ -13,7 +13,7 @@ class _Setting {
$this->settingFile = realpath($basepath.'/d_setting/conf.php');
if(file_exists($this->settingFile)) {
$this->exist = 1;
$this->exist = true;
}
}