From 022b8b3445a7f2618613c100d3fbb489fb8f2b3c Mon Sep 17 00:00:00 2001 From: Emmanuel Engelhart Date: Mon, 7 Dec 2015 19:12:13 +0100 Subject: [PATCH] Fix typo in HTTP 404 error message --- src/server/kiwix-serve.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/kiwix-serve.cpp b/src/server/kiwix-serve.cpp index 4254b8c..0cba532 100644 --- a/src/server/kiwix-serve.cpp +++ b/src/server/kiwix-serve.cpp @@ -293,7 +293,7 @@ static int accessHandlerCallback(void *cls, } pthread_mutex_unlock(&searcherLock); } else { - content = "\nFulltext search unavailable

Nott Found

There is no article with the title \"" + kiwix::encodeDiples(patternString) + "\" and the fulltext search engine is not available for this content.

"; + content = "\nFulltext search unavailable

Not Found

There is no article with the title \"" + kiwix::encodeDiples(patternString) + "\" and the fulltext search engine is not available for this content.

"; httpResponseCode = MHD_HTTP_NOT_FOUND; }