diff --git a/admin-dev/themes/default/template/controllers/modules/list.tpl b/admin-dev/themes/default/template/controllers/modules/list.tpl
index cef266630..eff58e90d 100644
--- a/admin-dev/themes/default/template/controllers/modules/list.tpl
+++ b/admin-dev/themes/default/template/controllers/modules/list.tpl
@@ -47,7 +47,7 @@
}{$module->image}{else}../modules/{$module->name}/{$module->logo}{/if}) |
- {$module->displayName}
+ {$module->displayName}{$module->name}
{if isset($module->type) && $module->type == 'addonsMustHave'}
{l s='Must Have'}
{else}
diff --git a/js/jquery/plugins/jquery.uitablefilter.js b/js/jquery/plugins/jquery.uitablefilter.js
index 5bf1f359e..5ada735e6 100644
--- a/js/jquery/plugins/jquery.uitablefilter.js
+++ b/js/jquery/plugins/jquery.uitablefilter.js
@@ -28,7 +28,7 @@
// these function pointers may change
var matches = function(elem) { elem.show() }
var noMatch = function(elem) { elem.hide(); new_hidden = true }
- var getText = function(elem) { return elem.html() }
+ var getText = function(elem) { return elem.text() }
if( column ) {
var index = null;
|