From a404edf2802066fe40c3cd6522971a9556f1cb5b Mon Sep 17 00:00:00 2001 From: kremsy Date: Thu, 16 Jan 2014 13:38:53 +0100 Subject: [PATCH] fixed . in login --- application/core/Players/PlayerList.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/core/Players/PlayerList.php b/application/core/Players/PlayerList.php index cbe2e66e..fb9a5db8 100644 --- a/application/core/Players/PlayerList.php +++ b/application/core/Players/PlayerList.php @@ -581,7 +581,7 @@ class PlayerList implements ManialinkPageAnswerListener, CallbackListener { */ public function handleManialinkPageAnswer(array $callback) { $actionId = $callback[1][2]; - $actionArray = explode('.', $actionId); + $actionArray = explode('.', $actionId, 3); if(count($actionArray) <= 2) { return; }