| 11 Jun 2006 11:49 - Attached on mergeing:admin probs
 
 I read a the previous post on how an admin can change ranking.  I pasted to code and uploaded the file, but when i search for all my members and go to anyone of them, it still doesn't give me the option of chaninging ranks.   So far this is what i did:
 Edit bb_specials.php, directly after <? type:
 
 $Ranks=array("Rank1","Rank2","Rank3","Rank4","Rank5");
 
 And change $userRanks to:
 
 $userRanks=array(1=>$Ranks[0],2=>$Ranks[1],3=>$Ranks[2]
 , 4=>$Ranks[2],5 =>$Ranks[1],6=>$Ranks[3],7=>$Ranks[4],8=>$Ranks[3],9=>$Ranks[5],10=>$R anks[5]);
 |