From 63032e355c636247e78457bbfdb681732b107649 Mon Sep 17 00:00:00 2001 From: Max Klaversma Date: Sun, 9 Feb 2014 03:18:35 +0100 Subject: [PATCH] Fixed misspelling of ServerLogin (SeverLogin) in ErrorHandler --- application/core/ErrorHandler.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/core/ErrorHandler.php b/application/core/ErrorHandler.php index 312653dc..d77f072e 100644 --- a/application/core/ErrorHandler.php +++ b/application/core/ErrorHandler.php @@ -39,7 +39,7 @@ class ErrorHandler { $error['ManiaControlVersion'] = ManiaControl::VERSION; $error['OperatingSystem'] = php_uname(); $error['PHPVersion'] = phpversion(); - $error['SeverLogin'] = null; + $error['ServerLogin'] = null; $json = json_encode($error); $info = base64_encode($json); @@ -80,7 +80,7 @@ class ErrorHandler { $error['ManiaControlVersion'] = ManiaControl::VERSION; $error['OperatingSystem'] = php_uname(); $error['PHPVersion'] = phpversion(); - $error['SeverLogin'] = $this->maniaControl->server->login; + $error['ServerLogin'] = $this->maniaControl->server->login; $json = json_encode($error); $info = base64_encode($json);