" . __("Zero results found.") . sprintf(__('You can find more help in the Pandora\'s wiki'), "http://wiki.pandorafms.com/index.php?search=" . $config['search_keywords']) . "
\n"; } else { $table->width = "98%"; $table->class = "databox"; $table->size = array(); $table->size[0] = "95%"; $table->size[1] = "5%"; $table->head = array (); $table->head[0] = __('Name'); $table->head[1] = __('Matches'); $table->align = array (); $table->align[1] = "center"; $table->data = array (); foreach ($helps as $iterator => $help) { if (is_numeric($iterator)) { $name = $help['id']; } else { $name = $iterator; } $table->data[] = array( "" . $name . "", $help['count'] ); } echo "
"; html_print_table ($table); unset($table); } ?>