history 함수 인자 제한 완화

This commit is contained in:
2018-06-29 09:28:58 +09:00
parent df1a99d877
commit e81075ef04
+10 -4
View File
@@ -156,7 +156,10 @@ function pushOldNationStop(int $no, int $nationNo){
} }
//DB-based //DB-based
function pushNationHistory($nation, $history) { function pushNationHistory($nation, ?string $history) {
if(!$history){
return;
}
if(!$nation || !$nation['nation']){ if(!$nation || !$nation['nation']){
return; return;
} }
@@ -164,7 +167,10 @@ function pushNationHistory($nation, $history) {
$history.'<br>', $nation['nation']); $history.'<br>', $nation['nation']);
} }
function pushGeneralHistory($me, $history) { function pushGeneralHistory($me, ?string $history) {
if(!$history){
return;
}
DB::db()->query("UPDATE general set history=concat(%s, history) where no=%i", DB::db()->query("UPDATE general set history=concat(%s, history) where no=%i",
$history.'<br>', $me['no']); $history.'<br>', $me['no']);
} }
@@ -174,7 +180,7 @@ function getGeneralHistoryAll(int $no) {
return ConvertLog($history); return ConvertLog($history);
} }
function pushWorldHistory(array $history, $year=null, $month=null) { function pushWorldHistory(?array $history, $year=null, $month=null) {
if(!$history){ if(!$history){
return; return;
} }
@@ -221,7 +227,7 @@ function getWorldHistoryWithDate($year, $month) {
} }
function pushGeneralPublicRecord(array $history, $year=null, $month=null) { function pushGeneralPublicRecord(?array $history, $year=null, $month=null) {
if(!$history){ if(!$history){
return; return;
} }