From a39c35c83be5c750d09665043d335461379f2130 Mon Sep 17 00:00:00 2001 From: zYne Date: Sat, 19 May 2007 19:54:15 +0000 Subject: [PATCH] --- lib/Doctrine/Table.php | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/lib/Doctrine/Table.php b/lib/Doctrine/Table.php index 96bb050e1..d88cd19a6 100644 --- a/lib/Doctrine/Table.php +++ b/lib/Doctrine/Table.php @@ -792,10 +792,10 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable $alias = $name; } - $this->bound[$alias] = array('field' => $field, - 'type' => $type, - 'class' => $name, - 'alias' => $alias); + $this->bound[$alias] = array('field' => $field, + 'type' => $type, + 'class' => $name, + 'alias' => $alias); if ($options !== null) { $opt = array(); if (is_string($options)) { @@ -860,7 +860,12 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable $definition = $this->bound[$name]; - list($component, $definition['foreign']) = explode('.', $definition['field']); + list($component, $tmp) = explode('.', $definition['field']); + + if ( ! isset($definition['foreign'])) { + $definition['foreign'] = $tmp; + } + unset($definition['field']); $definition['table'] = $this->conn->getTable($definition['class'], $allowExport);