Преглед изворни кода

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