From d16db7d6871a47f33d49719f38534abb7543f0d0 Mon Sep 17 00:00:00 2001 From: Alexandre Dulaunoy Date: Tue, 19 May 2020 16:29:35 +0200 Subject: [PATCH 1/3] chg: [warning-lists] updated to the latest version --- app/files/warninglists | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/files/warninglists b/app/files/warninglists index 2c116cbd1..78590f352 160000 --- a/app/files/warninglists +++ b/app/files/warninglists @@ -1 +1 @@ -Subproject commit 2c116cbd1ff50b2ed677ea6af08c8a6bf511a6fd +Subproject commit 78590f35269658cceb009d0fe282d5274e74ba89 From 8037056eb4a9b56b4dd3127a5ea48d20e225a83f Mon Sep 17 00:00:00 2001 From: iglocska Date: Tue, 19 May 2020 16:51:13 +0200 Subject: [PATCH 2/3] chg: [galaxy] bump --- app/files/misp-galaxy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/files/misp-galaxy b/app/files/misp-galaxy index 881a5664a..dee9a5646 160000 --- a/app/files/misp-galaxy +++ b/app/files/misp-galaxy @@ -1 +1 @@ -Subproject commit 881a5664acfbb0e3ef68c70b641a966859ed2f4f +Subproject commit dee9a564606ba92c50f13b53884bceaacf6c4522 From e9dc6e36f4b5ab70d32cfe24bcc2501a07e31c81 Mon Sep 17 00:00:00 2001 From: Jakub Onderka Date: Tue, 19 May 2020 21:20:31 +0200 Subject: [PATCH 3/3] new: [UI] Add event ID to page table With more tabs, navigation between tabs with different events can be pain, when all of them has the same title. --- app/Controller/EventsController.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Controller/EventsController.php b/app/Controller/EventsController.php index 75ba2fb43..4804c960e 100644 --- a/app/Controller/EventsController.php +++ b/app/Controller/EventsController.php @@ -1602,6 +1602,7 @@ class EventsController extends AppController $this->set('defaultFilteringRules', $this->defaultFilteringRules); $this->set('mitreAttackGalaxyId', $this->Event->GalaxyCluster->Galaxy->getMitreAttackGalaxyId()); $this->set('modificationMapCSV', $modificationMapCSV); + $this->set('title_for_layout', __('Event #%s', $event['Event']['id'])); } public function view($id = null, $continue=false, $fromEvent=null)