From 1cc0c764c30e115dbaf29c62f30394c1ffb91dd7 Mon Sep 17 00:00:00 2001 From: doctrine Date: Sat, 22 Apr 2006 09:20:12 +0000 Subject: [PATCH] --- classes/Session.class.php | 2 ++ classes/Session/Mysql.class.php | 3 +-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/classes/Session.class.php b/classes/Session.class.php index 4d8e47f0a..b63dfe01a 100644 --- a/classes/Session.class.php +++ b/classes/Session.class.php @@ -414,6 +414,8 @@ abstract class Doctrine_Session extends Doctrine_Configurable implements Countab public function bulkInsert() { if(empty($this->insert)) return false; + + foreach($this->insert as $name => $inserts) { if( ! isset($inserts[0])) diff --git a/classes/Session/Mysql.class.php b/classes/Session/Mysql.class.php index a2e27d910..e26789976 100644 --- a/classes/Session/Mysql.class.php +++ b/classes/Session/Mysql.class.php @@ -75,8 +75,6 @@ class Doctrine_Session_Mysql extends Doctrine_Session_Common { if(empty($this->insert)) return false; - $values = $this->getMaximumValues(array_keys($this->insert)); - foreach($this->insert as $name => $inserts) { if( ! isset($inserts[0])) continue; @@ -156,6 +154,7 @@ class Doctrine_Session_Mysql extends Doctrine_Session_Common { } } } + $this->insert = array(); return true; }