This commit is contained in:
Gnieark 2016-06-10 10:12:10 +02:00
parent a2f20c383b
commit 88dcd56810

View File

@ -180,7 +180,7 @@ function get_battles_history($game){
function ELO_get_podium($arena){ function ELO_get_podium($arena){
global $lnMysql; global $lnMysql;
$podium=array(); $podium=array();
$rs=mysqli_query($lnMysql,"SELECT id,name,description,ELO FROM bots WHERE game='".substr($arena,0,8)."' AND active='1' ORDER BY ELO DESC, name"); $rs=mysqli_query($lnMysql,"SELECT id,name,description,ELO FROM bots WHERE game='".$arena."' AND active='1' ORDER BY ELO DESC, name");
while($r = mysqli_fetch_row($rs)){ while($r = mysqli_fetch_row($rs)){
$podium[]=array( $podium[]=array(
'id' => $r[0], 'id' => $r[0],