From 6a289be5cb423be4b5a8bb3178cd3346c63b6ae2 Mon Sep 17 00:00:00 2001
From: Jared Hancock <jared@osticket.com>
Date: Thu, 27 Aug 2015 13:12:47 -0500
Subject: [PATCH] search: Fix search on ticket source

---
 include/class.search.php | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/include/class.search.php b/include/class.search.php
index 69391fe05..4e30c1f0d 100644
--- a/include/class.search.php
+++ b/include/class.search.php
@@ -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'),
         );
     }
 
-- 
GitLab