hmm.. your character listed there has no professions..
give the guy 50c and tell him to pick up enchanting or something...
anyways.. a proper fix would be to change the GetProfession function at line 418 to
Code:
function GetProfession()
{
if (isset($this->profession) )
{
if ( !is_array($this->profession[0]) )
{
$tmpArr[] = $this->profession;
$this->profession = $tmpArr;
}
foreach($this->profession as $profs)
{
$profs['value'] = $profs['value'][0];
$prof_url = $this->get_image_location($this->icons_url . "professions/" . $profs['key'] . "-sm.gif");
$profs['name'] = $this->wowchar_phrase($profs['name'], "prof");
eval('$out .= "' . fetch_template('WoWChar_profession_data') . '";');
}
return $out;
} else {
return false;
}
}