Merge branch '3.2.x'

This commit is contained in:
Marc Alexander 2018-09-15 17:22:42 +02:00
commit fd6aaf17a4
No known key found for this signature in database
GPG key ID: 50E0D2423696F995

View file

@ -267,7 +267,7 @@ class mssqlnative extends \phpbb\db\driver\mssql_base
unset($row['line2'], $row['line3']);
}
}
return (count($row)) ? $row : false;
return ($row !== null) ? $row : false;
}
/**