소스 검색

Fix undef var

Jordi Boggiano 5 년 전
부모
커밋
67317a13bb
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/Packagist/WebBundle/Package/SymlinkDumper.php

+ 1 - 1
src/Packagist/WebBundle/Package/SymlinkDumper.php

@@ -868,7 +868,7 @@ class SymlinkDumper
         file_put_contents($path, $contents);
 
         if (is_array($this->writeLog)) {
-            $this->writeLog[$path] = array($contents, $mtime);
+            $this->writeLog[$path] = array($contents, null);
         }
     }