Преглед на файлове

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