switch back to null

users are expected to use ?? '' if needed
This commit is contained in:
Thomas Portelange 2022-08-31 09:00:08 +02:00 committed by GitHub
parent d3d03d9f79
commit 66c1c09b74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ class SQLite3Connector extends DBConnector
public function getLastError()
{
$message = $this->dbConn->lastErrorMsg();
return $message === 'not an error' ? '' : $message;
return $message === 'not an error' ? null : $message;
}
public function getSelectedDatabase()