]> granicus.if.org Git - docbook-dsssl/commitdiff
fix no. 2 - Fix for missing "No results found for..." bug
authorKasun Gajasinghe <kasunbg@gmail.com>
Fri, 30 Sep 2011 19:21:02 +0000 (19:21 +0000)
committerKasun Gajasinghe <kasunbg@gmail.com>
Fri, 30 Sep 2011 19:21:02 +0000 (19:21 +0000)
xsl/webhelp/template/content/search/nwSearchFnt.js

index addd4804516b76dbc2e668fa36ad699ca9ee4f35..ba802d22458e873e9831ab54e8acb077a0d40144 100644 (file)
@@ -704,7 +704,11 @@ function SortResults(mots) {
     finalObj = new Array();\r
     for (t in fileAndWordList) {       \r
        finalObj.push(new newObj(t,fileAndWordList[t]));\r
-    }    \r
+    }\r
+\r
+    if ( finalObj.length == 0 ) {   // None of the queried words are not in the index (stemmed or not)\r
+        return null;\r
+    }\r
     finalObj = removeDerivates(finalObj);\r
     for (t in finalObj) {\r
         tab = finalObj[t].wordList.split(',');\r