- Timestamp:
- 10/09/08 09:43:31 (14 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
dev/mods/history/about.php
r315 r336 15 15 'Mitchman', 16 16 'Coni', 17 'beansman'); 17 'beansman', 18 'FriedRoadKill', 19 'bunjiboys'); 18 20 sort($contributor); 19 21 … … 24 26 $html .= "This is the EVE Development Network Killboard running version ".KB_VERSION." ".KB_RELEASE." rev ".SVN_REV.", created for <a href=\"http://www.eve-online.com/\">EVE Online</a> corporations and alliances. Based on the EVE-Killboard created by rig0r, it is now developed and maintained by the <a href=\"http://www.eve-dev.net/\">EVE-Dev</a> group.<br/>" 25 27 ."All EVE graphics and data used are property of <a href=\"http://www.ccpgames.com/\">CCP</a>.<br/><br/>"; 26 $html .= '<a href="http://www.eve-dev.net/" target="_blank"><img src="http://www.eve-dev.net/ e107_images/evedev_button.png" border="0"/></a><br/><br/>';28 $html .= '<a href="http://www.eve-dev.net/" target="_blank"><img src="http://www.eve-dev.net/logo.png" border="0"/></a><br/><br/>'; 27 29 28 30 $html .= '<b>Staff:</b><br/>'; … … 133 135 elseif ($value > 80 && $value <= 250) 134 136 $color = "orange"; 135 elseif ($value > 250 && $value <= 7000)137 elseif ($value > 250) 136 138 $color = "purple"; 137 139 … … 156 158 if ($row['shp_techlevel'] == 2) 157 159 { 158 $row['shp_name'] = '<img src="'.IMG_URL.'/ ships/32_32/t2.gif">'.$row['shp_name'];160 $row['shp_name'] = '<img src="'.IMG_URL.'/items/32_32/t2.gif">'.$row['shp_name']; 159 161 } 160 162 $html .= "<tr class=kb-table-row-odd><td>".$row['shp_name']." </td><td>".$row['scl_class']." </td><td align=\"right\">".number_format($row['scl_points'],0,',','.')."</td><td align=\"right\"> ".number_format($row['shp_value'],0,',','.')." <img src=\"".getVictimShipValueIndicator($row['shp_value']/1000000)."\"></td></tr>";