Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/3362' into develop
Browse files Browse the repository at this point in the history
Forward port zendframework/zendframework#3362

Conflicts:
	library/Zend/Http/Client/Cookies.php
	library/Zend/Http/Cookies.php
	library/Zend/Soap/Client/Common.php
	library/Zend/Soap/Wsdl.php
  • Loading branch information
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ModuleAutoloader.php
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ public function autoload($class)
continue;
}

$moduleName_buffer = str_replace($namespace . "\\", "", $moduleName );
$path .= DIRECTORY_SEPARATOR . $moduleName_buffer . DIRECTORY_SEPARATOR;
$moduleNameBuffer = str_replace($namespace . "\\", "", $moduleName );
$path .= DIRECTORY_SEPARATOR . $moduleNameBuffer . DIRECTORY_SEPARATOR;

$classLoaded = $this->loadModuleFromDir($path, $class);
if ($classLoaded) {
Expand Down

0 comments on commit 0b9b10b

Please sign in to comment.