Quote:
Originally Posted by Kz1.0
sort[count][2] = RANKS[iRank][i]
->
PHP Code:
sort[count][2] = RANKS[iRank[i]]
?
|
That's what I thought first as well.
But after looking twice I changed my mind. I think it should be like this:
Code:
sort[count][2] = iRank[i]
because RANKS[] is a string.
EDIT: Since the second index is never used I guess it doesn't matter.
__________________