Changeset 336
- Timestamp:
- 10/09/08 09:43:31 (14 years ago)
- Location:
- dev
- Files:
-
- 5 modified
Legend:
- Unmodified
- Added
- Removed
-
dev/common/about.php
r314 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/>'; … … 100 102 elseif ($value > 80 && $value <= 250) 101 103 $color = "orange"; 102 elseif ($value > 250 && $value <= 7000)104 elseif ($value > 250 && $value) 103 105 $color = "purple"; 104 106 … … 123 125 if ($row['shp_techlevel'] == 2) 124 126 { 125 $row['shp_name'] = '<img src="'.IMG_URL.'/ ships/32_32/t2.gif">'.$row['shp_name'];127 $row['shp_name'] = '<img src="'.IMG_URL.'/items/32_32/t2.gif">'.$row['shp_name']; 126 128 } 127 129 $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>"; -
dev/common/admin/admin_menu.php
r216 r336 49 49 50 50 options::oldMenu('Advanced', "Ship Values", "?a=admin_shp_val"); 51 options::oldMenu('Advanced', "Synchronization", "?a=admin_sync");51 #options::oldMenu('Advanced', "Synchronization", "?a=admin_sync"); 52 52 options::oldMenu('Advanced', "Post Permissions", "?a=admin_postperm"); 53 53 -
dev/common/includes/class.session.php
r254 r336 17 17 function isAdmin() 18 18 { 19 return (bool) $_SESSION['admin'];19 return (bool)($_SESSION['admin'] && $_SESSION['rsite'] == $_SERVER["HTTP_HOST"]); 20 20 } 21 21 22 22 function isSuperAdmin() 23 23 { 24 return (bool) $_SESSION['admin_super'];24 return (bool)($_SESSION['admin_super']&& $_SESSION['rsite'] == $_SERVER["HTTP_HOST"]); 25 25 } 26 26 … … 29 29 session_start(); 30 30 $_SESSION['admin'] = $admin; 31 $_SESSION['rsite'] = $_SERVER["HTTP_HOST"]; 31 32 } 32 33 -
dev/common/includes/globals.php
r326 r336 1 1 <?php 2 2 // current subversion revision 3 preg_match('/\$Re'.'vision: (.*?) \$/', '$Revision: 3 26 $', $match);3 preg_match('/\$Re'.'vision: (.*?) \$/', '$Revision: 336 $', $match); 4 4 define('SVN_REV', $match[1]); 5 5 -
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>";