Browse Source

fix bindfile update on website creation

Olivier Massot 6 tháng trước cách đây
mục cha
commit
3037ebe618
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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);
     }
 }