2 include_once("conf.php");
3 include_once("include/info_table_generator.php");
5 $entry = intval(@$_REQUEST['itemset']);
6 $set = getItemSet($entry);
11 RenderError($lang['item_not_found']);
15 $setkey = array_keys($set);
16 echo "<table class=report width=500 border = 1>";
18 echo "<tr><td class=head>".$set['name']."</td></tr>";
19 echo "<tr><td class=set>";
21 if ($set_item = $set['item_'.$i])
23 echo " ";show_item($set_item);echo " ";
26 echo "<tr><td class=left>";
28 if ($spellID = $set['spell_'.$i])
29 echo ' <a class=spell href="?spell='.$spellID.'">('.$set['count_'.$i].') '.get_spell_details($spellID).'</a><br>';
31 echo "</tbody></table>";