From eab3adcf2c7103d1e6ff336675d86a1c942d1dfa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miko=C5=82aj=20Adamczyk?= Date: Thu, 7 Feb 2019 15:39:56 +0100 Subject: [PATCH] EZP-30118: Fix typo in UnauthorizedException message --- eZ/Publish/Core/Base/Exceptions/UnauthorizedException.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eZ/Publish/Core/Base/Exceptions/UnauthorizedException.php b/eZ/Publish/Core/Base/Exceptions/UnauthorizedException.php index 26d4545ec2c..1f47e3115a2 100644 --- a/eZ/Publish/Core/Base/Exceptions/UnauthorizedException.php +++ b/eZ/Publish/Core/Base/Exceptions/UnauthorizedException.php @@ -39,7 +39,7 @@ public function __construct($module, $function, array $properties = null, Except $this->setParameters(['%module%' => $module, '%function%' => $function]); if ($properties) { - $this->setMessageTemplate("User does not have access to '%function%' '%module%' with: %with%'"); + $this->setMessageTemplate("User does not have access to '%function%' '%module%' with: %with%"); $with = []; foreach ($properties as $name => $value) { $with[] = "{$name} '{$value}'";