Explorar el Código

fix bindfile update on website creation

Olivier Massot hace 6 meses
padre
commit
3037ebe618
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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);
     }
 }