Skip to content

Commit

Permalink
fixed wrong namespace on serializer adapter loader
Browse files Browse the repository at this point in the history
  • Loading branch information
marc-mabe committed Sep 9, 2010
1 parent 4878f07 commit 5e24fb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/Zend/Serializer/Serializer.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public static function resetAdapterLoader()
protected static function _getDefaultAdapterLoader()
{
$loader = new PluginLoader();
$loader->addPrefixPath('Zend\\Serializer\\Adapter\\', __DIR__ . '/Serializer/Adapter');
$loader->addPrefixPath('Zend\\Serializer\\Adapter\\', __DIR__ . DIRECTORY_SEPARATOR . 'Adapter');
return $loader;
}

Expand Down

0 comments on commit 5e24fb5

Please sign in to comment.