Small fix: createRoot() only generates a root id if it doesnt already have a valid value
This commit is contained in:
parent
a1ee3f97e7
commit
e90e62c9f7
1 changed files with 2 additions and 2 deletions
|
@ -73,8 +73,8 @@ class Doctrine_Tree_NestedSet extends Doctrine_Tree implements Doctrine_Tree_Int
|
||||||
$record = $this->table->create();
|
$record = $this->table->create();
|
||||||
}
|
}
|
||||||
|
|
||||||
// if tree is many roots, then get next root id
|
// if tree is many roots, and no root id has been set, then get next root id
|
||||||
if($root = $this->getAttribute('hasManyRoots')) {
|
if ($root = $this->getAttribute('hasManyRoots') && $record->getNode()->getRootValue() <= 0) {
|
||||||
$record->getNode()->setRootValue($this->getNextRootId());
|
$record->getNode()->setRootValue($this->getNextRootId());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue