kohana-flexible-migrations icon indicating copy to clipboard operation
kohana-flexible-migrations copied to clipboard

$result can be returns NULL

Open flexnst opened this issue 9 years ago • 0 comments

Please change on classes/Drivers/Mysql.php on line 213:

if ($result->count() !== 1)

to:

if (!is_object($result) || $result->count() !== 1)

Because $result can be NULL

flexnst avatar Sep 28 '15 18:09 flexnst