- new map icons added
- fixed a "map sync" issue with multiple open tabs, #446 - fixed a bug where connections "disappear" from map for some seconds - fixed a bug where "open ingame info" for char/system does not work in some UI tables - upgraded [_Font Awesome_](https://fontawesome.com) icon lib `v5.2.0` → `v5.9.0`
This commit is contained in:
@@ -33,7 +33,7 @@ class SignatureHistory extends AbstractRestController {
|
||||
$system->getById($systemId);
|
||||
|
||||
if($system->hasAccess($activeCharacter)){
|
||||
$historyDataAll = $system->getSignaturesHistoryData();
|
||||
$historyDataAll = $system->getSignaturesHistory();
|
||||
foreach($historyDataAll as $historyEntry){
|
||||
$label = [
|
||||
$historyEntry['character']->name,
|
||||
@@ -74,7 +74,7 @@ class SignatureHistory extends AbstractRestController {
|
||||
$system = Pathfinder\AbstractPathfinderModel::getNew('SystemModel');
|
||||
$system->getById($systemId, 0);
|
||||
if($system->hasAccess($activeCharacter)){
|
||||
if($historyEntry = $system->getSignatureHistoryData($stamp)){
|
||||
if($historyEntry = $system->getSignatureHistoryEntry($stamp)){
|
||||
$updateSignaturesHistory = false;
|
||||
|
||||
// history entry found for $stamp -> format signatures data
|
||||
|
||||
@@ -36,7 +36,7 @@ class System extends AbstractRestController {
|
||||
){
|
||||
$systemData = $system->getData();
|
||||
$systemData->signatures = $system->getSignaturesData();
|
||||
$systemData->sigHistory = $system->getSignaturesHistoryData();
|
||||
$systemData->sigHistory = $system->getSignaturesHistory();
|
||||
$systemData->structures = $system->getStructuresData();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user