From 8b901832a02bebea0c995f1c1ec64ec09d4018a8 Mon Sep 17 00:00:00 2001 From: Ewald Vanderveken Date: Wed, 16 Dec 2020 00:01:45 +0100 Subject: [PATCH] Fixed small typo --- Controller/WebUIController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Controller/WebUIController.php b/Controller/WebUIController.php index c6f6c268..d099104b 100644 --- a/Controller/WebUIController.php +++ b/Controller/WebUIController.php @@ -211,7 +211,7 @@ public function editAction(Request $request, string $configName, string $locale, public function deleteAction(Request $request, string $configName, string $locale, string $domain): Response { if (!$this->isWebUIEnabled || !$this->isWebUIAllowDelete) { - return new Response('You are not allowed to create. Check your config.', Response::HTTP_BAD_REQUEST); + return new Response('You are not allowed to delete. Check your config.', Response::HTTP_BAD_REQUEST); } try {