From 26d3d3e7a470eabb878e17602aca132d2e4976fa Mon Sep 17 00:00:00 2001 From: zYne Date: Thu, 6 Sep 2007 19:32:22 +0000 Subject: [PATCH] --- lib/Doctrine/I18n.php | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/lib/Doctrine/I18n.php b/lib/Doctrine/I18n.php index e608876e4..86a2e4910 100644 --- a/lib/Doctrine/I18n.php +++ b/lib/Doctrine/I18n.php @@ -51,7 +51,7 @@ class Doctrine_I18n extends Doctrine_Plugin throw new Doctrine_I18n_Exception('Fields not set.'); } - $this->_options['className'] = str_replace('%CLASS%', + $this->_options['className'] = str_replace('%CLASS%', $this->_options['table']->getComponentName(), $this->_options['className']); @@ -73,12 +73,8 @@ class Doctrine_I18n extends Doctrine_Plugin unset($def['autoincrement']); unset($def['sequence']); - unset($def['primary']); - $col = strtolower(Doctrine::tableize($name) . '_' . $column); - - $def['primary'] = true; - $fk[$col] = $def; + $fk[$column] = $def; } $cols = $table->getColumns();