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 {
class TicketSourceChoiceField extends ChoiceField {
function getChoices() {
return array(
'w' => __('Web'),
'e' => __('Email'),
'p' => __('Phone'),
'a' => __('API'),
'o' => __('Other'),
'web' => __('Web'),
'email' => __('Email'),
'phone' => __('Phone'),
'api' => __('API'),
'other' => __('Other'),
);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment