From 83af818915f7415b96875d8e5a825f5ffffe7f85 Mon Sep 17 00:00:00 2001 From: pookey <pookey@625475ce-881a-0410-a577-b389adb331d8> Date: Mon, 16 Oct 2006 21:08:14 +0000 Subject: [PATCH] fixing #172 - copying a record now will set non-null fields to modified so that when it's saved it inserts correctly --- lib/Doctrine/Record.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/Doctrine/Record.php b/lib/Doctrine/Record.php index 7f687a245..de5eb2646 100644 --- a/lib/Doctrine/Record.php +++ b/lib/Doctrine/Record.php @@ -1118,7 +1118,12 @@ abstract class Doctrine_Record extends Doctrine_Access implements Countable, Ite * @return Doctrine_Record */ public function copy() { - return $this->_table->create($this->_data); + $ret = $this->_table->create($this->_data); + $modified = array(); + foreach($this->_data as $key => $val) + if (!($val instanceof Doctrine_Null)) + $ret->_modified[] = $key; + return $ret; } /** * assignIdentifier