소스 검색

[HttpKernel] fixed typo

Fabien Potencier 14 년 전
부모
커밋
677a072554
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/Symfony/Component/HttpKernel/Profiler/PdoProfilerStorage.php

+ 1 - 1
src/Symfony/Component/HttpKernel/Profiler/PdoProfilerStorage.php

@@ -198,7 +198,7 @@ abstract class PdoProfilerStorage implements ProfilerStorageInterface
             $profile->setParent($parent);
         }
 
-        $profile->setChildren($this->readChildren($token, $parent));
+        $profile->setChildren($this->readChildren($token, $profile));
 
         return $profile;
     }