瀏覽代碼

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);
         }
     }