瀏覽代碼

update typo3 service routes

Olivier Massot 1 年之前
父節點
當前提交
afa06786cd
共有 1 個文件被更改,包括 1 次插入2 次删除
  1. 1 2
      src/Service/Typo3/Typo3Service.php

+ 1 - 2
src/Service/Typo3/Typo3Service.php

@@ -26,8 +26,7 @@ class Typo3Service
      */
     protected function sendCommand(string $route, array $parameters): ResponseInterface
     {
-        $url = UrlBuilder::concatParameters('/typo3/index.php?route='.$route, $parameters);
-
+        $url = UrlBuilder::concatParameters('/typo3' . $route, $parameters);
         return $this->typo3_client->request('GET', $url);
     }