瀏覽代碼

fix bindfile update on website creation

Olivier Massot 6 月之前
父節點
當前提交
3037ebe618
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/Service/Typo3/BindFileService.php

+ 1 - 1
src/Service/Typo3/BindFileService.php

@@ -31,6 +31,6 @@ readonly class BindFileService
     public function registerSubdomain(string $subdomain): void
     {
         $bindFile = new Path($this->bindfileBufferFile);
-        $bindFile->putContent($subdomain.'\n', true);
+        $bindFile->putContent($subdomain."\n", true);
     }
 }