diff --git a/include/class.search.php b/include/class.search.php
index 69391fe05808a1ff808535dfe0868adff63868ce..4e30c1f0d693edc2b470c096a326982fff2ac00b 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'),
         );
     }