瀏覽代碼

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