From 9d8dfbce50cb8c155883e4eb06dafebf718c3472 Mon Sep 17 00:00:00 2001 From: zYne Date: Fri, 20 Jul 2007 20:03:32 +0000 Subject: [PATCH] --- lib/Doctrine/Transaction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/Transaction.php b/lib/Doctrine/Transaction.php index baf03c9db..93bf4f36b 100644 --- a/lib/Doctrine/Transaction.php +++ b/lib/Doctrine/Transaction.php @@ -372,7 +372,7 @@ class Doctrine_Transaction extends Doctrine_Connection_Module } // take snapshots of all collections used within this transaction - foreach (array_unique($this->_collections) as $coll) { + foreach ($this->_collections as $coll) { $coll->takeSnapshot(); } $this->_collections = array();