Skip to content
Snippets Groups Projects
Commit 6a289be5 authored by Jared Hancock's avatar Jared Hancock
Browse files

search: Fix search on ticket source

parent 22232e19
No related branches found
No related tags found
No related merge requests found
...@@ -1138,11 +1138,11 @@ class TicketFlagChoiceField extends ChoiceField { ...@@ -1138,11 +1138,11 @@ class TicketFlagChoiceField extends ChoiceField {
class TicketSourceChoiceField extends ChoiceField { class TicketSourceChoiceField extends ChoiceField {
function getChoices() { function getChoices() {
return array( return array(
'w' => __('Web'), 'web' => __('Web'),
'e' => __('Email'), 'email' => __('Email'),
'p' => __('Phone'), 'phone' => __('Phone'),
'a' => __('API'), 'api' => __('API'),
'o' => __('Other'), 'other' => __('Other'),
); );
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment