mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
Merge pull request #4540 from nicebb/ticket/14876
[ticket/14876] Allows multibyte strings for exception messages
This commit is contained in:
commit
997bdc7778
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ class kernel_exception_subscriber implements EventSubscriberInterface
|
||||||
$exception = $event->getException();
|
$exception = $event->getException();
|
||||||
|
|
||||||
$message = $exception->getMessage();
|
$message = $exception->getMessage();
|
||||||
$this->type_caster->set_var($message, $message, 'string', false, false);
|
$this->type_caster->set_var($message, $message, 'string', true, false);
|
||||||
|
|
||||||
if ($exception instanceof \phpbb\exception\exception_interface)
|
if ($exception instanceof \phpbb\exception\exception_interface)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue