1
0
mirror of synced 2025-01-18 06:21:40 +03:00

Added trim to package path.

This commit is contained in:
Jonathan.Wage 2007-11-08 00:29:15 +00:00
parent af4f85ae69
commit 93e1945144

View File

@ -836,7 +836,7 @@ END;
// If is the package class then we need to make the path to the complete package
if (isset($options['is_package_class']) && $options['is_package_class']) {
$path = str_replace('.', DIRECTORY_SEPARATOR, $options['package']);
$path = str_replace('.', DIRECTORY_SEPARATOR, trim($options['package']));
$writePath = $packagesPath . DIRECTORY_SEPARATOR . $path;