Revision 314, 0.6 KB
(checked in by ralle030583, 15 years ago)
|
DB Update003 : Warefare Links fixed from mid to highslot
Ticket #71 : Kill_detail.tpl Slot,Destroyed,Dropped items has own table-row styles in the style.css's
Ticket #70 : KB_VERSION not a number
Ticket #69 : Update Portrait Update
Ticket #68 : possibility to disabe out of game posting
Ticket #64 : Problem with IGB links when KB not in web root
|
Line | |
---|
1 | <?php |
---|
2 | require_once('common/includes/class.kill.php'); |
---|
3 | |
---|
4 | $kll_id = intval($_GET['kll_id']); |
---|
5 | |
---|
6 | $html .= "<html><head><title>IGB Killboard</title></head><body>"; |
---|
7 | $html .= "<a href=\"".KB_HOST."?a=post_igb\">Post killmail</a> | <a href=\"".KB_HOST."?a=portrait_grab\">Update portrait</a> | <a href=\"".KB_HOST."?a=igb&mode=kills\">Kills</a> | <a href=\"".KB_HOST."?a=igb&mode=losses\">Losses</a><br><br>"; |
---|
8 | |
---|
9 | $kill = new Kill($kll_id); |
---|
10 | if ($kill){ |
---|
11 | $raw = $kill->getRawMail(); |
---|
12 | $html.= "<pre>$raw</pre>"; |
---|
13 | }else{ |
---|
14 | $html .= "Killmail not found."; |
---|
15 | } |
---|
16 | echo $html; |
---|
17 | ?> |
---|