Quellcode durchsuchen

Bugfix: Also copy custom logo for non-static docs

Shalvah vor 5 Jahren
Ursprung
Commit
720f9c9e9b
1 geänderte Dateien mit 1 neuen und 3 gelöschten Zeilen
  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");
         }
     }