From 0acaf546e7578261eea14ba5703dca5376320184 Mon Sep 17 00:00:00 2001 From: Andras Iklody Date: Mon, 13 Jan 2020 18:55:40 +0100 Subject: [PATCH] fix: Make feeds a searchable scope in the logs, fixes #5501 --- app/Controller/LogsController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Controller/LogsController.php b/app/Controller/LogsController.php index dd2f7fb9f..c5592457e 100644 --- a/app/Controller/LogsController.php +++ b/app/Controller/LogsController.php @@ -416,7 +416,7 @@ class LogsController extends AppController $this->set('actions', $actions); // combobox for models - $models = array('Attribute', 'Event', 'EventBlacklist', 'EventTag', 'DecayingModel', 'MispObject', 'Organisation', 'Post', 'Regexp', 'Role', 'Server', 'ShadowAttribute', 'SharingGroup', 'Tag', 'Task', 'Taxonomy', 'Template', 'Thread', 'User', 'Whitelist'); + $models = array('Attribute', 'Event', 'EventBlacklist', 'EventTag', 'Feed', 'DecayingModel', 'MispObject', 'Organisation', 'Post', 'Regexp', 'Role', 'Server', 'ShadowAttribute', 'SharingGroup', 'Tag', 'Task', 'Taxonomy', 'Template', 'Thread', 'User', 'Whitelist'); $models = array('' => 'ALL') + $this->_arrayToValuesIndexArray($models); $this->set('models', $models); $this->set('actionDefinitions', $this->{$this->defaultModel}->actionDefinitions);