small fix
This commit is contained in:
parent
37e12ebf88
commit
dac68bd5a3
@ -287,24 +287,6 @@ class AuthenticationManager implements CallbackListener, EchoListener, Communica
|
|||||||
return $admins;
|
return $admins;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Get all connected Players with less permission than the given Auth Level
|
|
||||||
*
|
|
||||||
* @api
|
|
||||||
* @param int $authLevel
|
|
||||||
* @return Player[]
|
|
||||||
*/
|
|
||||||
public function getConnectedPlayers($authLevel = self::AUTH_LEVEL_MODERATOR) {
|
|
||||||
$players = $this->maniaControl->getPlayerManager()->getPlayers();
|
|
||||||
$playerArray = array();
|
|
||||||
foreach ($players as $player) {
|
|
||||||
if (!self::checkRight($player, $authLevel)) {
|
|
||||||
array_push($playerArray, $player);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return $playerArray;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Check whether the Player has enough Rights
|
* Check whether the Player has enough Rights
|
||||||
*
|
*
|
||||||
|
@ -333,9 +333,8 @@ class Server implements CallbackListener, CommandListener, UsageInformationAble
|
|||||||
try {
|
try {
|
||||||
$replay = $this->maniaControl->getClient()->getValidationReplay($login);
|
$replay = $this->maniaControl->getClient()->getValidationReplay($login);
|
||||||
} catch (Exception $e) {
|
} catch (Exception $e) {
|
||||||
// TODO temp added 19.04.2014
|
|
||||||
$this->maniaControl->getErrorHandler()->triggerDebugNotice("Exception line 330 Server.php" . $e->getMessage());
|
$this->maniaControl->getErrorHandler()->triggerDebugNotice("Exception line 330 Server.php" . $e->getMessage());
|
||||||
trigger_error("Couldn't get validation replay of '{$login}'. " . $e->getMessage());
|
Logger::logError("Couldn't get validation replay of '{$login}'. " . $e->getMessage());
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
return $replay;
|
return $replay;
|
||||||
|
Loading…
Reference in New Issue
Block a user