1
0
mirror of synced 2025-01-17 22:11:41 +03:00

- Fixed problem with Nested Set table definition not happening in time for exporting when NestedSet behavior is added through Doctrine_Template_NestedSet.

This commit is contained in:
wolfpakz 2007-11-29 01:39:19 +00:00
parent 7e2669d1bd
commit 3aa991821b

View File

@ -44,4 +44,9 @@ class Doctrine_Template_NestedSet extends Doctrine_Template
$this->_table->setOption('treeOptions', $this->_options);
$this->_table->setOption('treeImpl', 'NestedSet');
}
public function setTableDefinition()
{
$this->_table->getTree()->setTableDefinition();
}
}