[DoctrineBundle] Fixing issue with paths not being the realpath and causing issues when comparing string paths in Doctrine

This commit is contained in:
Jonathan H. Wage 2010-03-10 22:14:55 -05:00 committed by Fabien Potencier
parent 573f95a80c
commit 08617caf56
1 changed files with 2 additions and 2 deletions

View File

@ -43,11 +43,11 @@ class Bundle extends BaseBundle
{
if (is_dir($dir = $bundleDirs[$namespace].'/'.$class.'/Resources/config/doctrine/metadata'))
{
$metadataDirs[] = $dir;
$metadataDirs[] = realpath($dir);
}
if (is_dir($dir = $bundleDirs[$namespace].'/'.$class.'/Entities'))
{
$entityDirs[] = $dir;
$entityDirs[] = realpath($dir);
}
}
}