install2 수정.
func_string 기본값 추가
This commit is contained in:
+1
-2
@@ -116,6 +116,5 @@ d_log/*.txt
|
|||||||
d_setting/set.php
|
d_setting/set.php
|
||||||
set.php
|
set.php
|
||||||
config.php
|
config.php
|
||||||
d_session/sess_*
|
sess_*
|
||||||
data/session/sess_*
|
|
||||||
*/logs/*.txt
|
*/logs/*.txt
|
||||||
|
|||||||
Vendored
+4
-3
@@ -6,12 +6,13 @@
|
|||||||
"**/CVS": true,
|
"**/CVS": true,
|
||||||
"**/.DS_Store": true,
|
"**/.DS_Store": true,
|
||||||
"**/logs/*.txt": true,
|
"**/logs/*.txt": true,
|
||||||
"**/session/sess*":true,
|
"**/session/sess**":true,
|
||||||
|
"**/che_close": true,
|
||||||
|
|
||||||
},
|
},
|
||||||
"search.exclude": {
|
"search.exclude": {
|
||||||
"**/che_close/*": true,
|
"**/che_close": true,
|
||||||
"e_lib/*":true,
|
"e_lib":true,
|
||||||
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
@@ -1 +1 @@
|
|||||||
p_ip|s:12:"192.168.0.26";p_time|i:1515870030;
|
p_ip|s:12:"192.168.0.26";p_time|i:1515870626;
|
||||||
@@ -240,7 +240,7 @@ class _String {
|
|||||||
$size = strlen($str);
|
$size = strlen($str);
|
||||||
|
|
||||||
$count = ($maxsize - $size);
|
$count = ($maxsize - $size);
|
||||||
|
$string = '';
|
||||||
for($i=0; $i < $count; $i++) {
|
for($i=0; $i < $count; $i++) {
|
||||||
$string = $string.$ch;
|
$string = $string.$ch;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,15 @@
|
|||||||
<?php
|
<?php
|
||||||
include "lib.php";
|
include "lib.php";
|
||||||
include "func.php";
|
include "func.php";
|
||||||
|
require_once('../e_lib/util.php');
|
||||||
|
|
||||||
|
$turnterm = util::array_get($_POST['turnterm'],'0');
|
||||||
|
$sync = util::array_get($_POST['sync'],'0');
|
||||||
|
$scenario = util::array_get($_POST['scenario'],'0');
|
||||||
|
$fiction = util::array_get($_POST['fiction'],'0');
|
||||||
|
$extend = util::array_get($_POST['extend'],'0');
|
||||||
|
$npcmode = util::array_get($_POST['npcmode'],'0');
|
||||||
|
$img = util::array_get($_POST['img'],'0');
|
||||||
|
|
||||||
$connect=dbConn();
|
$connect=dbConn();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user