Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2015-09-08 05:40:53 +0300
committermattab <matthieu.aubry@gmail.com>2015-09-08 05:40:53 +0300
commit549b14eb376fb109828573b2c1d241d7a6587f67 (patch)
tree79c0f1497ad86884ef883d9e6bcfa3ba11aadc58 /core/ExceptionHandler.php
parentf48631dea56bdcb90d3861913dcc81bcc43ff9f6 (diff)
fix typo in http header
Diffstat (limited to 'core/ExceptionHandler.php')
-rw-r--r--core/ExceptionHandler.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ExceptionHandler.php b/core/ExceptionHandler.php
index 12552b85e4..aa20344dd1 100644
--- a/core/ExceptionHandler.php
+++ b/core/ExceptionHandler.php
@@ -56,7 +56,7 @@ class ExceptionHandler
public static function dieWithHtmlErrorPage(Exception $exception)
{
- Common::sendHeader('Content-Type: text/html; char1set=utf-8');
+ Common::sendHeader('Content-Type: text/html; charset=utf-8');
echo self::getErrorResponse($exception);