Changeset 286
- Timestamp:
- 12/13/07 13:07:27 (15 years ago)
- Location:
- dev
- Files:
-
- 1 added
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
dev/common/includes/globals.php
r283 r286 1 1 <?php 2 2 // current subversion revision 3 preg_match('/\$Re'.'vision: (.*?) \$/', '$Revision: 28 3$', $match);3 preg_match('/\$Re'.'vision: (.*?) \$/', '$Revision: 286 $', $match); 4 4 define('SVN_REV', $match[1]); 5 5 -
dev/mods/ingame_mod/igb.php
r240 r286 7 7 function mktable($klist, $limit) 8 8 { 9 $this->klist = $klist;10 $this->limit = $limit;11 9 $odd = false; 12 10 $klist->rewind(); … … 35 33 $html .= "</td><td>"; 36 34 $html .= $kill->getSolarSystemName() ."(".roundsec($kill->getSolarSystemSecurity()).")"; 35 $html .= "</td><td>"; 36 $html .= "<a href=index.php?a=igb_kill_mail&kll_id=".$kill->getID().">Mail</a>"; 37 37 $html .= "</td></tr>"; 38 38 } … … 44 44 $html .= "<a href=\"?a=post_igb\">Post killmail</a> | <a href=\"?a=portrait_grab\">Update portrait</a> | <a href=\"?a=igb&mode=kills\">Kills</a> | <a href=\"?a=igb&mode=losses\">Losses</a><br>"; 45 45 $html .= "<table width=\"100%\" border=1>"; 46 $html .= "<tr><td>Ship</td><td>Victim</td><td>Final Blow</td><td>Date/Time</td><td>System</td>< /tr>";46 $html .= "<tr><td>Ship</td><td>Victim</td><td>Final Blow</td><td>Date/Time</td><td>System</td><td>Raw Mail</td></tr>"; 47 47 switch ($_GET[mode]) { 48 48 case "losses": 49 49 $klist = new KillList(); 50 50 $klist->setOrdered(true); 51 $klist->setLimit(30); 51 52 involved::load($klist,'loss'); 52 53 $html .= mktable($klist,30); … … 55 56 $klist = new KillList(); 56 57 $klist->setOrdered(true); 58 $klist->setLimit(30); 57 59 involved::load($klist,'kill'); 58 60 $html .= mktable($klist,30); … … 60 62 default: 61 63 $klist = new KillList(); 64 $klist->setOrdered(true); 65 $klist->setLimit(10); 62 66 involved::load($klist,'kill'); 63 $klist->setOrdered(true);64 67 $html .= mktable($klist,10); 65 68 break; -
dev/templates/admin_export.tpl
r91 r286 1 1 Please select pilots, corps or alliances to be exported.<br/> 2 2 <br/> 3 <form id="search" action="?a= kill_export" method="post">3 <form id="search" action="?a=admin_kill_export" method="post"> 4 4 <table class="kb-subtable"> 5 5 <tr><td>Type:</td><td>Text: (3 letters minimum)</td></tr> … … 32 32 </table> 33 33 {if $permissions} 34 <br/><a href="?a= kill_export&sub=do">Export Mails</a>34 <br/><a href="?a=admin_kill_export&sub=do">Export Mails</a> 35 35 {/if} 36 36 <br/>