diff options
-rw-r--r-- | theme/list_lib.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/theme/list_lib.js b/theme/list_lib.js index b6ac97366..ef5d2909c 100644 --- a/theme/list_lib.js +++ b/theme/list_lib.js @@ -628,7 +628,7 @@ SearchModule.prototype.Enter_search_tag = function(tags, diveno) if (!tags) return; for (var i = 0; i < tags.length; i++) { - insertIn(tags[i], diveno, this.head); + insertIn(tags[i].toLowerCase(), diveno, this.head); numberofwords++; } } |