1
0
mirror of synced 2024-12-13 14:56:01 +03:00

Fixed an issue with the NestedSet where the baseAlias was not reset properly under some circumstances.

This commit is contained in:
romanb 2007-11-13 15:52:45 +00:00
parent a4795d6300
commit 187c194bbd

View File

@ -316,7 +316,7 @@ class Doctrine_Tree_NestedSet extends Doctrine_Tree implements Doctrine_Tree_Int
*/
public function resetBaseQuery()
{
$this->_baseQuery = null;
$this->_baseQuery = $this->_createBaseQuery();
}
/**