1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-21 18:44:37 +02:00

Merge branch '3.1.x' into 3.2.x

This commit is contained in:
Máté Bartus
2016-10-20 18:34:59 +02:00

View File

@ -70,6 +70,9 @@ class kernel_exception_subscriber implements EventSubscriberInterface
$message = $this->language->lang_array($message, $exception->get_parameters());
}
// Show <strong> text in bold
$message = preg_replace('#&lt;(/?strong)&gt;#i', '<$1>', $message);
if (!$event->getRequest()->isXmlHttpRequest())
{
page_header($this->language->lang('INFORMATION'));