From e90e62c9f7eea6d9731c60295c1edbcec667aa7e Mon Sep 17 00:00:00 2001 From: romanb Date: Mon, 7 May 2007 16:05:14 +0000 Subject: [PATCH] Small fix: createRoot() only generates a root id if it doesnt already have a valid value --- lib/Doctrine/Tree/NestedSet.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Doctrine/Tree/NestedSet.php b/lib/Doctrine/Tree/NestedSet.php index d0aa24e23..9ace44087 100644 --- a/lib/Doctrine/Tree/NestedSet.php +++ b/lib/Doctrine/Tree/NestedSet.php @@ -73,8 +73,8 @@ class Doctrine_Tree_NestedSet extends Doctrine_Tree implements Doctrine_Tree_Int $record = $this->table->create(); } - // if tree is many roots, then get next root id - if($root = $this->getAttribute('hasManyRoots')) { + // if tree is many roots, and no root id has been set, then get next root id + if ($root = $this->getAttribute('hasManyRoots') && $record->getNode()->getRootValue() <= 0) { $record->getNode()->setRootValue($this->getNextRootId()); }