From 7203d151ec9c75b6d216868becc7b33ff7b566b7 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Wed, 5 Oct 2016 19:10:07 +0200 Subject: [PATCH] Enigma: Fix encoding of a key search phrase (#5459) --- plugins/enigma/enigma.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/enigma/enigma.js b/plugins/enigma/enigma.js index 081fea21b..029453963 100644 --- a/plugins/enigma/enigma.js +++ b/plugins/enigma/enigma.js @@ -242,7 +242,7 @@ rcube_webmail.prototype.enigma_import_search = function() } this.enigma_find_publickey(search); - } + } }; // list row selection handler @@ -296,10 +296,10 @@ rcube_webmail.prototype.enigma_search = function(props) props = this.gui_objects.qsearchbox.value; if (props || this.env.search_request) { - var params = {'_a': 'search', '_q': urlencode(props)}, + var params = {'_a': 'search', '_q': props}, lock = this.set_busy(true, 'searching'); // if (this.gui_objects.search_filter) - // addurl += '&_filter=' + this.gui_objects.search_filter.value; +// addurl += '&_filter=' + this.gui_objects.search_filter.value; this.env.current_page = 1; this.enigma_loadframe(); this.enigma_clear_list();