Show
Ignore:
Timestamp:
12/19/08 15:44:54 (15 months ago)
Author:
jwage
Message:

[1.0, 1.1] fixing custom package paths for schema files

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/1.1/lib/Doctrine/Import/Builder.php

    r5270 r5318  
    11491149        // If is the package class then we need to make the path to the complete package 
    11501150        else if (isset($definition['is_package_class']) && $definition['is_package_class']) { 
    1151             $writePath = $packagesPath . DIRECTORY_SEPARATOR . $definition['package_path']; 
     1151            if (isset($definition['package_custom_path'])) { 
     1152              $writePath = $definition['package_custom_path']; 
     1153            } else { 
     1154              $writePath = $packagesPath . DIRECTORY_SEPARATOR . $definition['package_path']; 
     1155            } 
    11521156 
    11531157            if ($this->generateTableClasses()) {