Merge pull request #65 from lekoala/patch-1

prevent php 8 complaining about null values
This commit is contained in:
Guy Sartorelli 2022-09-06 15:59:32 +12:00 committed by GitHub
commit ee7f0e4d25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -170,7 +170,7 @@ class SQLite3Connector extends DBConnector
public function escapeString($value)
{
return $this->dbConn->escapeString($value);
return $this->dbConn->escapeString($value ?? '');
}
public function selectDatabase($name)