فهرست منبع

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