Fix missing dot

This commit is contained in:
XavierGR
2025-04-18 11:17:54 +02:00
parent 24b2852830
commit 1c2f923811

View File

@@ -2987,7 +2987,7 @@ class AttributeInteger extends AttributeDBField
{
return null;
} elseif(gettype($proposedValue) !== 'integer') {
IssueLog::Warning("Trying to set integer attribute ".$this->GetCode()." to type".gettype($proposedValue)".");
IssueLog::Warning("Trying to set integer attribute ".$this->GetCode()." to type".gettype($proposedValue).".");
}
return (int)$proposedValue;