1
0
mirror of synced 2024-12-14 07:06:04 +03:00

Proper false statement handling

This commit is contained in:
zYne 2007-06-05 23:19:12 +00:00
parent b41714eec5
commit 3230021f7f

View File

@ -796,6 +796,10 @@ class Doctrine_Hydrate implements Serializable
$array = $driver->getElementCollection($componentName);
$identifiable = array();
if ($stmt === false) {
return $array;
}
while ($data = $stmt->fetch(PDO::FETCH_ASSOC)) {
$parse = true;