Version 3 #1

Manually merged
timw4mail merged 47 commits from develop into master 2020-04-23 18:39:27 -04:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 15de3b8dde - Show all commits

View File

@ -309,7 +309,7 @@ abstract class AbstractDriver
}
// Handle comma-separated identifiers
if (strpos($identifier, ',') !== FALSE)
if (is_string($identifier) && strpos($identifier, ',') !== FALSE)
{
$parts = array_map('mb_trim', explode(',', $identifier));
$parts = array_map([$this, __METHOD__], $parts);