Changeset 391
- Timestamp:
- 06/24/09 14:17:02 (12 years ago)
- Location:
- dev
- Files:
-
- 12 modified
Legend:
- Unmodified
- Added
- Removed
-
dev/common/includes/class.db.mysqli.php
r370 r391 2 2 // mssql: select SCOPE_IDENTITY() AS id 3 3 // postgresql: INSERT INTO mytable (lastname) VALUES ('Cher') RETURNING id; 4 5 require_once('db.php'); 4 6 5 7 //! mysqli connection class. -
dev/common/includes/class.db.php
r370 r391 1 1 <?php 2 require_once('db.php'); 2 3 3 4 class DBConnection -
dev/common/includes/class.db_cache.php
r370 r391 1 1 <?php 2 3 require_once('db.php'); 2 4 3 5 //! mysqli file-cached query class. Manages SQL queries to a MySQL DB using mysqli. -
dev/common/includes/class.db_memcache.php
r370 r391 1 1 <?php 2 3 require_once('db.php'); 2 4 3 5 class DBMemcachedQuery -
dev/common/includes/globals.php
r386 r391 7 7 else 8 8 { 9 $svn_rev = '3 86';9 $svn_rev = '391'; 10 10 } 11 11 define('SVN_REV', $svn_rev); -
dev/common/kill_detail.php
r388 r391 1 1 <?php 2 2 require_once('common/includes/class.kill.php'); 3 4 $page = new Page('Kill details'); 3 5 4 6 $kll_id = intval($_GET['kll_id']); … … 40 42 require_once('common/includes/class.corp.php'); 41 43 require_once('common/includes/class.alliance.php'); 42 43 $page = new Page('Kill details');44 44 45 45 if(config::get('kd_lgreen')) … … 240 240 $i_name = $item->getName(); 241 241 $i_location = $destroyed->getLocationID(); 242 if($i_location == 7) $i_location = 4; 242 243 $i_id = $item->getID(); 243 244 $i_usedgroup = $item->get_used_launcher_group(); … … 313 314 $i_name = $item->getName(); 314 315 $i_location = $dropped->getLocationID(); 316 if($i_location == 7) $i_location = 4; 315 317 $i_id = $item->getID(); 316 318 $i_usedgroup = $item->get_used_launcher_group(); -
dev/mods/apoc_fitting/kill_detail.php
r388 r391 1 1 <?php 2 2 require_once('common/includes/class.kill.php'); 3 4 $page = new Page('Kill details'); 3 5 4 6 $kll_id = intval($_GET['kll_id']); -
dev/mods/ext_fitting/kill_detail.php
r370 r391 257 257 } 258 258 $i_name = $item->getName(); 259 $i_location = $destroyed->getLocationID(); 260 $i_id = $item->getID(); 261 $i_usedgroup = $item->get_used_launcher_group($i_name); 262 $dest_array[$i_location][] = array('Icon' => $item->getIcon(32), 'Name' => $i_name, 'Quantity' => $i_qty, 'Value' => $formatted, 'single_unit' => $value, 'itemID' => $i_id,'slotID' => $i_location); 259 $i_location = $destroyed->getLocationID(); 260 if($i_location == 7) $i_location = 4; 261 $i_id = $item->getID(); 262 $i_usedgroup = $item->get_used_launcher_group($i_name); 263 $dest_array[$i_location][] = array('Icon' => $item->getIcon(32), 'Name' => $i_name, 'Quantity' => $i_qty, 'Value' => $formatted, 'single_unit' => $value, 'itemID' => $i_id,'slotID' => $i_location); 263 264 264 265 //Fitting, KE - add destroyed items to an array of all fitted items. … … 317 318 } 318 319 $i_name = $item->getName(); 319 $i_location = $dropped->getLocationID(); 320 $i_id = $item->getID(); 321 $i_usedgroup = $item->get_used_launcher_group($i_name); 320 $i_location = $dropped->getLocationID(); 321 if($i_location == 7) $i_location = 4; 322 $i_id = $item->getID(); 323 $i_usedgroup = $item->get_used_launcher_group($i_name); 322 324 $drop_array[$i_location][] = array('Icon' => $item->getIcon(32), 'Name' => $i_name, 'Quantity' => $i_qty, 'Value' => $formatted, 'single_unit' => $value, 'itemID' => $i_id,'slotID' => $i_location); 323 325 -
dev/mods/signature_generator/sig.php
r390 r391 33 33 errorPic('That pilot doesnt exist.'); 34 34 } 35 $pilot->getPortraitURL( 128);35 $pilot->getPortraitURL(256); 36 36 $corp = $pilot->getCorp(); 37 37 $alliance = $corp->getAlliance(); -
dev/mods/value_fetch/cron.php
r338 r391 20 20 21 21 require_once('kbconfig.php'); 22 require_once('common/includes/ class.db.php');22 require_once('common/includes/db.php'); 23 23 require_once('mods/value_fetch/fetcher.php'); 24 24