i am using the propel runtime v1.5.4 and its related propel_generator in my zend_framework/php project since two years without any problems.
Yesterday i have updated the propel_generator via pear to v1.6.5 and the runtime library to v1.6.6. After the first build-proccess with the new generator i have a problem with the generated classmap-[project]-conf.php file:
Old Generator (v1.5.4)
...
'AutocompleteQuery' => 'AutocompleteQuery.php',
'AutocompleteTableMap' => 'map/AutocompleteTableMap.php',
'BaseAclAssertion' => 'om/BaseAclAssertion.php'
...
New Generator (v1.6.5)
...
'AutocompleteQuery' => 'AutocompleteQuery.php',
'AutocompleteTableMap' => '/map/AutocompleteTableMap.php',
'BaseAclAssertion' => '/om/BaseAclAssertion.php'
...
The new generator adds a leading slash before the 'map' and 'om' path. So the propel autoloader can not find the class-files.
Is there any config-option or a generator-template where i can change this?
Thanks.