소스 검색

Bugfix: Also copy custom logo for non-static docs

Shalvah 5 년 전
부모
커밋
720f9c9e9b
1개의 변경된 파일1개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 3
      src/Writing/Writer.php

+ 1 - 3
src/Writing/Writer.php

@@ -259,9 +259,7 @@ class Writer
         rcopy("{$this->sourceOutputPath}/css", "{$publicPath}/css");
 
         if ($logo = $this->config->get('logo')) {
-            if ($this->isStatic) {
-                copy($logo, "{$publicPath}/images/logo.png");
-            }
+            copy($logo, "{$publicPath}/images/logo.png");
         }
     }