소스 검색

ZF-8364: fixed typo

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@19189 44c647ce-9c0f-0410-b52a-842ac1e357ba
bate 16 년 전
부모
커밋
c69830c0d0
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      library/Zend/Loader/Autoloader/Resource.php

+ 1 - 1
library/Zend/Loader/Autoloader/Resource.php

@@ -192,7 +192,7 @@ class Zend_Loader_Autoloader_Resource implements Zend_Loader_Autoloader_Interfac
     {
     {
         $classPath = $this->getClassPath($class);
         $classPath = $this->getClassPath($class);
         if (false !== $classPath) {
         if (false !== $classPath) {
-            return include $path;
+            return include $classPath;
         }
         }
         return false;
         return false;
     }
     }