From 1c5162eed2031c3bcb50e7fe384eb636fd601001 Mon Sep 17 00:00:00 2001 From: jackbravo Date: Mon, 3 Sep 2007 22:29:30 +0000 Subject: [PATCH] Use array_shift, since the key may not allways be 0 --- lib/Doctrine/Table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/Table.php b/lib/Doctrine/Table.php index 6d5c67395..6581f68f8 100644 --- a/lib/Doctrine/Table.php +++ b/lib/Doctrine/Table.php @@ -884,7 +884,7 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable } case Doctrine::FETCH_ARRAY: if ( ! empty($records[0])) { - return $records[0]; + return array_shift($records); } } }