From 30281d6c59cf537693e988a06a3d22784ad07052 Mon Sep 17 00:00:00 2001 From: gwoo Date: Thu, 23 Jul 2009 19:28:46 +0000 Subject: [PATCH] fixes #6506, notice on 5.2.10 for habtm save with empty value git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@8251 3807eeeb-6ff5-0310-8944-8be069107fe0 --- cake/libs/model/model.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cake/libs/model/model.php b/cake/libs/model/model.php index cf50f8f6c..58fa4c826 100644 --- a/cake/libs/model/model.php +++ b/cake/libs/model/model.php @@ -372,7 +372,7 @@ class Model extends Overloadable { } elseif ($table) { $this->useTable = $table; } - + if ($ds !== null) { $this->useDbConfig = $ds; } @@ -827,7 +827,7 @@ class Model extends Overloadable { $type = $this->getColumnType($field); if (in_array($type, array('datetime', 'timestamp', 'date', 'time'))) { - $useNewDate = (isset($data['year']) || isset($data['month']) || + $useNewDate = (isset($data['year']) || isset($data['month']) || isset($data['day']) || isset($data['hour']) || isset($data['minute'])); $dateFields = array('Y' => 'year', 'm' => 'month', 'd' => 'day', 'H' => 'hour', 'i' => 'min', 's' => 'sec'); @@ -1343,7 +1343,7 @@ class Model extends Overloadable { unset($values); } elseif (isset($row[$this->hasAndBelongsToMany[$assoc]['associationForeignKey']])) { $newData[] = $row; - } elseif (isset($row[$join][$this->hasAndBelongsToMany[$assoc]['associationForeignKey']])) { + } elseif (isset($row[$join]) && isset($row[$join][$this->hasAndBelongsToMany[$assoc]['associationForeignKey']])) { $newData[] = $row[$join]; } }