From 6a02302fc9dfabd6108b91a43b5f8908bdbfbe81 Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Mon, 23 Sep 2013 19:55:35 +0200 Subject: [PATCH] /admin/plugins: Fix search algorithm (use string match in lower case) fix #1903 --- src/static/js/pluginfw/installer.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/static/js/pluginfw/installer.js b/src/static/js/pluginfw/installer.js index b125a77c7..e56026167 100644 --- a/src/static/js/pluginfw/installer.js +++ b/src/static/js/pluginfw/installer.js @@ -83,8 +83,8 @@ exports.search = function(searchTerm, maxCacheAge, cb) { searchTerm = searchTerm.toLowerCase(); for (var pluginName in results) { // for every available plugin if (pluginName.indexOf(plugins.prefix) != 0) continue; // TODO: Also search in keywords here! - - if(searchTerm && pluginName.indexOf(searchTerm) < 0 && results[pluginName].description.indexOf(searchTerm) < 0) continue; + + if(searchTerm && !~pluginName.toLowerCase().indexOf(searchTerm) && !~results[pluginName].description.toLowerCase().indexOf(searchTerm)) continue; res[pluginName] = results[pluginName]; } cb && cb(null, res)