Changeset 98
- Timestamp:
- 11/28/06 19:04:41 (16 years ago)
- Location:
- dev
- Files:
-
- 55 added
- 4 modified
Legend:
- Unmodified
- Added
- Removed
-
dev/common/about.php
r92 r98 11 11 // Remember to share any modifications to the EVE-Dev Killboard. 12 12 $html .= "This is the EVE Development Network Killboard running version 1.2, created for <a href=\"http://www.eve-online.com/\">EVE Online</a> corporations and alliances.<br/>Based on the EVE-Killboard created by <a href=\"mailto:rig0r@eve-killboard.net\">rig0r</a> it is now developed and maintained by the <a href=\"http://www.eve-dev.net/\">EVE-Dev</a> group.<br/>All EVE graphics and data used are property of <a href=\"http://www.ccpgames.com/\">CCP</a>.<br/><br/>"; 13 14 13 $qry = new DBQuery(); 15 14 $qry->execute("select count(*) as cnt from kb3_kills"); … … 30 29 // $html .= "<div class=block-header2>Killboard stats</div>"; 31 30 $html .= "This killboard currently contains: <b>" . number_format($kills, 0, ',', '.') . "</b> killmails, <b>" . number_format($items, 0, ',', '.') . "</b> destroyed items, <b>" . number_format($pilots, 0, ',', '.') . "</b> pilots, <b>" . number_format($corps, 0, ',', '.') . "</b> corporations and <b>" . number_format($alliances, 0, ',', '.') . "</b> alliances.<br><br>"; 31 $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/>'; 32 32 33 33 $html .= "<div class=block-header2>Portraits</div>"; -
dev/mods/item_values/kill_detail.php
r96 r98 223 223 224 224 } 225 if($page->isAdmin()) { 225 if ($page->isAdmin()) 226 { 226 227 $html .="<form method=post id=".$value." name=". $value ." action= >"; 227 $html .= "<td class=kb-table-cell colspan=1 ><b>$value</b>";228 $html .= "<td class=kb-table-cell colspan=1 align=right><b>$value</b>"; 228 229 $html .= "<input checked='checked' name='IID' value=" . $item->getID() . " type='hidden'></td>"; // Hidden Item Id Indicator 229 230 … … 234 235 $html .= "<td class=kb-table-cell colspan=1><input type='submit' name='submit' value='Update' class='comment-button'></td>"; 235 236 $html .="</form>"; 236 } else { 237 $html .= "<td class=kb-table-cell colspan=1><b>$Formatted</b>"; 237 } 238 else 239 { 240 $html .= "<td class=kb-table-cell colspan=1 align=right><b>$Formatted</b>"; 238 241 } 239 242 $html .= "</tr>"; … … 245 248 $html .= "<td class=kb-table-cell colspan=2 align=right><b>" . "Total Module Loss:" . "</b></td>"; 246 249 247 if ($TotalValue > 0) {248 250 if ($TotalValue > 0) 251 { 249 252 $Formatted = number_format($TotalValue,2); 250 251 253 } 252 254 //Get Ship Value -
dev/mods/item_values/settings.php
r97 r98 14 14 { 15 15 16 if (true) 17 { 16 18 //http://eve-central.com/home/marketstat_xml.html?typeid= 17 19 $html = "Querying Database for Ship Item Numbers<br>"; … … 34 36 usleep(200); 35 37 } 36 $html = "Finished";37 38 if (false) 38 $html .= "Finished"; 39 } 40 else 39 41 { 40 42 // this is a BAD idea for users … … 58 60 $updateSQL = "UPDATE kb3_items SET itm_value ='" . $pdata['market_stat']['avg_sell_price'] . "' WHERE itm_id = '" . $row['itm_id'] ."'"; 59 61 $uqry->execute($updateSQL); 60 usleep( 200);62 usleep(300); 61 63 } 62 64 $html .= "Finished"; -
dev/mods/signature_generator/sig.php
r87 r98 10 10 if (!$plt_id = $_GET['i']) 11 11 { 12 header(' location:error.jpg');12 header('Location: mods/signature_generator/error.jpg'); 13 13 exit; 14 14 } … … 21 21 if (!$pilot->exists()) 22 22 { 23 header('Location: error.jpg');23 header('Location: mods/signature_generator/error.jpg'); 24 24 exit; 25 25 } … … 30 30 if (ALLIANCE_ID && $alliance->getID() != ALLIANCE_ID) 31 31 { 32 header('Location: error.jpg');32 header('Location: mods/signature_generator/error.jpg'); 33 33 exit; 34 34 } 35 35 elseif (CORP_ID && $corp->getID() != CORP_ID) 36 36 { 37 header('Location: error.jpg');37 header('Location: mods/signature_generator/error.jpg'); 38 38 exit; 39 39 } … … 64 64 if (!is_dir('mods/signature_generator/signatures/'.$sig_name)) 65 65 { 66 header('Location: error.jpg');66 header('Location: mods/signature_generator/error.jpg'); 67 67 exit; 68 68 }