1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00
This commit is contained in:
zYne 2007-05-20 18:33:29 +00:00
parent 0f921a8c4d
commit 45f4ec2443

View file

@ -736,10 +736,10 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable
* @return void * @return void
*/ */
public function unbindAll() public function unbindAll()
{ throw new Exception(); {
$this->bound = array(); $this->bound = array();
$this->relations = array(); $this->relations = array();
$this->boundAliases = array(); $this->boundAliases = array();
} }
/** /**
* unbinds a relation * unbinds a relation
@ -965,9 +965,9 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable
} else { } else {
// auto initialize a new one-to-one relationships for association table // auto initialize a new one-to-one relationships for association table
$associationTable->bind($this->getComponentName(), $associationTable->bind($this->getComponentName(),
$associationTable->getComponentName(). '.' . $e2[1], $associationTable->getComponentName(). '.' . $e2[1],
Doctrine_Relation::ONE_AGGREGATE Doctrine_Relation::ONE_AGGREGATE
); );
$associationTable->bind($definition['table']->getComponentName(), $associationTable->bind($definition['table']->getComponentName(),
$associationTable->getComponentName(). '.' . $definition['foreign'], $associationTable->getComponentName(). '.' . $definition['foreign'],