From: Jan Schneider Date: Tue, 25 May 2010 13:26:28 +0000 (+0200) Subject: Need to compare the raw value. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=03436e846d3353076146838c891a56e8f4a56145;p=horde.git Need to compare the raw value. --- diff --git a/horde/js/prettyautocomplete.js b/horde/js/prettyautocomplete.js index a18b16674..f1a3a05d3 100644 --- a/horde/js/prettyautocomplete.js +++ b/horde/js/prettyautocomplete.js @@ -263,7 +263,7 @@ var PrettyAutocompleter = Class.create({ _filterChoices: function(c) { this.selectedItems.each(function(item) { - c = c.without(item.displayValue); + c = c.without(item.rawValue); }); return c; },