Fixed issue with isValidNode() and it not accepting an argument when it should allow it.
This commit is contained in:
parent
6f466c3f9c
commit
a1ef5fbf4b
1 changed files with 6 additions and 2 deletions
|
@ -660,9 +660,13 @@ class Doctrine_Node_NestedSet extends Doctrine_Node implements Doctrine_Node_Int
|
||||||
*
|
*
|
||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
public function isValidNode()
|
public function isValidNode(Doctrine_Record $record = null)
|
||||||
{
|
{
|
||||||
return ($this->getRightValue() > $this->getLeftValue());
|
if ($record === null) {
|
||||||
|
return ($this->getRightValue() > $this->getLeftValue());
|
||||||
|
} else {
|
||||||
|
return ($record->getNode()->getRightValue() > $record->getNode()->getLeftValue());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue