Changeset 58
- Timestamp:
- 11/07/06 03:21:22 (16 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
dev/common/class.kill.php
r56 r58 64 64 $this->execQuery(); 65 65 return $this->victimalliancename_; 66 } 67 68 function getVictimAllianceID() 69 { 70 $this->execQuery(); 71 return $this->victimallianceid_; 66 72 } 67 73 … … 280 286 $this->qry_ = new DBQuery(); 281 287 $this->sql_ = "select kll.kll_id, kll.kll_timestamp, plt.plt_name, 282 crp.crp_name, ali.all_name, kll.kll_ship_id,288 crp.crp_name, ali.all_name, ali.all_id, kll.kll_ship_id, 283 289 kll.kll_system_id, kll.kll_ship_id, 284 290 kll.kll_victim_id, plt.plt_externalid, … … 309 315 $this->setVictimCorpID($row['kll_crp_id']); 310 316 $this->setVictimCorpName($row['crp_name']); 317 $this->setVictimAllianceID($row['all_id']); 311 318 $this->setVictimAllianceName($row['all_name']); 312 319 $this->setVictimShip(new Ship($row['kll_ship_id'])); … … 754 761 } 755 762 } 756 757 763 ?>