Fixed misspelling of ServerLogin (SeverLogin) in ErrorHandler

This commit is contained in:
Max Klaversma 2014-02-09 03:18:35 +01:00 committed by Steffen Schröder
parent de54e45b59
commit 63032e355c

View File

@ -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);