Hi,
I've a problem with this infusion.
The problem:
http://alejatedelvudu.com/infusions/w..._panel.php
This have reference to this code line
[syntaxhighlighter brush=php,first-line=1,highlight=0,collapse=false,html-script=false] //What if they decide to set the settings before the roster ever loads data? Need a default...
$result = dbquery("SELECT MAX(character_rank) as max_rank FROM ".DB_WOW_ROSTER);
$max_rank = 20;
if(dbrows($result)) {
$data = dbarray($result);
$max_rank = $data['max_rank'];
}
$output = "<select class='textbox' id='rank_filter' name='selected_rank' style='width:200px;'>\n";
$output.= " <option value=''>".$locale['WAR_ALL']."</option>";
for($i = 0; $i <= $max_rank; $i+=1)
{
if(!in_array($i,$excluded))
$output.= " <option value='".$this->convertRank($i)."'>".$this->convertRank($i)."</option>\n";
}
$output.= "</select>\n";
return $output;
}
/**[/syntaxhighlighter]
I send the complete packaged