Author: jwage
Date: 2008-09-12 10:15:43 +0100 (Fri, 12 Sep 2008)
New Revision: 4912
Modified:
branches/1.0/lib/Doctrine/Import/Builder.php
Log:
fixes #1323
Modified: branches/1.0/lib/Doctrine/Import/Builder.php
===================================================================
--- branches/1.0/lib/Doctrine/Import/Builder.php 2008-09-12 08:59:44 UTC
(rev 4911)
+++ branches/1.0/lib/Doctrine/Import/Builder.php 2008-09-12 09:15:43 UTC
(rev 4912)
@@ -450,7 +450,11 @@
if (isset($relation['refClass'])) {
$a[] = '\'refClass\' => ' .
$this->varExport($relation['refClass']);
}
-
+
+ if (isset($relation['refClassRelationAlias'])) {
+ $a[] = '\'refClassRelationAlias\' => ' .
$this->varExport($relation['refClassRelationAlias']);
+ }
+
if (isset($relation['deferred']) && $relation['deferred']) {
$a[] = '\'default\' => ' .
$this->varExport($relation['deferred']);
}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"doctrine-svn" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.co.uk/group/doctrine-svn?hl=en-GB
-~----------~----~----~----~------~----~------~--~---