Revision 370, 1.5 KB
(checked in by kovell, 14 years ago)
|
- SQL queries optimised for speed and error protection.
- feed syndication optimised
- front page includes optional clock and optional kill/loss display
- mysqli support added
- transaction protection of kills added where supported (mysqli and InnoDB)
- summary tables and contracts show total destroyed value instead of ship value
- html errors reduced
- related kill calculation improved
- query caching errors reduced
- minor bugfixes
- Smarty 2.6.25 added
- apoc fitting mod added and modded
- code optimisations
- code comments added (doxygen format)
- conflicting mods are now identified
|
Line | |
---|
1 | <table class="kb-table" width="150" cellspacing="1"> |
---|
2 | <tr> |
---|
3 | <td class="kb-table-header" colspan="2" align="center">Top Damage Dealer</td> |
---|
4 | </tr> |
---|
5 | {foreach from=$topdamage key=key item=i} |
---|
6 | <tr class={cycle name=ccl}> |
---|
7 | <td class="finalblow" align="center" width="64"><div class="menu-wrapper"><a href="{$i.PilotURL}"><img class=finalblow height="64" width="64" src="{$i.portrait}" alt="{$i.PilotName}" title="{$i.PilotName}" border="0"></a></div></td> |
---|
8 | <td class="finalblow" align="center" width="64"><div class="menu-wrapper"><a href="?a=invtype&id={$i.ShipID}"><img class=finalblow height="64" width="64" src="{$i.shipImage}" alt="{$i.ShipName}" title="{$i.ShipName}" border="0"></a></div></td> |
---|
9 | {/foreach} |
---|
10 | </table> |
---|
11 | <br> |
---|
12 | |
---|
13 | <table class="kb-table" width="150" cellspacing="1"> |
---|
14 | <tr> |
---|
15 | <td class="kb-table-header" colspan="2" align="center">Final Blow</td> |
---|
16 | </tr> |
---|
17 | {foreach from=$involved key=key item=i} |
---|
18 | {if $i.FB == "true"} |
---|
19 | <tr class={cycle name=ccl}> |
---|
20 | <td class="finalblow" align="center" width="64"><div class="menu-wrapper"><a href="{$i.PilotURL}"><img class=finalblow height="64" width="64" src="{$i.portrait}" alt="{$i.PilotName}" title="{$i.PilotName}" border="0"></a></div></td> |
---|
21 | <td class="finalblow" align="center" width="64"><div class="menu-wrapper"><a href="?a=invtype&id={$i.ShipID}"><img class=finalblow height="64" width="64" src="{$i.shipImage}" alt="{$i.ShipName}" title="{$i.ShipName}" border="0"></a></div></td> |
---|
22 | </tr> |
---|
23 | {/if} |
---|
24 | {/foreach} |
---|
25 | </table> |
---|
26 | <br> |
---|