Skip to content

Commit

Permalink
fix: Make feeds a searchable scope in the logs, fixes MISP#5501
Browse files Browse the repository at this point in the history
  • Loading branch information
iglocska authored Jan 13, 2020
1 parent fb81f87 commit 0acaf54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Controller/LogsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ public function admin_search($new = false)
$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);
Expand Down

0 comments on commit 0acaf54

Please sign in to comment.