Changeset 210
- Timestamp:
- 05/01/07 16:07:16 (16 years ago)
- Location:
- dev/common/includes
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
dev/common/includes/class.killlist.php
r209 r210 289 289 $kill->_sclid = $row['scl_id']; 290 290 $kill->_shpid = $row['shp_id']; 291 if ($this->_tag) 292 { 293 $kill->_tag = $this->_tag; 294 } 291 295 if (config::get('kill_classified')) 292 296 { … … 483 487 $this->ordered_ = $flag; 484 488 } 489 490 function tag($string) 491 { 492 if ($string == '') 493 { 494 $this->_tag = null; 495 } 496 else 497 { 498 $this->_tag = $string; 499 } 500 } 485 501 } 486 502 -
dev/common/includes/class.killlisttable.php
r190 r210 79 79 $kll['systemsecurity'] = $kill->getSolarSystemSecurity(); 80 80 $kll['timestamp'] = $kill->getTimeStamp(); 81 if (isset($kill->_tag)) 82 { 83 $kll['tag'] = $kill->_tag; 84 } 81 85 82 86 if ($kill->fbplt_ext_)