set_time_limit accept only int in PHP7.4

This commit is contained in:
Eric
2020-11-12 10:57:13 +01:00
parent 23452804aa
commit 291041610b
16 changed files with 43 additions and 43 deletions

View File

@@ -40,7 +40,7 @@ class DatabaseAnalyzer
{
if (!is_null($this->iTimeLimitPerOperation))
{
set_time_limit($this->iTimeLimitPerOperation);
set_time_limit(intval($this->iTimeLimitPerOperation));
}
$aWrongRecords = CMDBSource::QueryToArray($sSelWrongRecs);