(refs #3)Search by AND if query words are separated by whitespace.

This commit is contained in:
takezoe
2013-07-17 11:52:28 +09:00
parent 4796d7f450
commit 27670525a3
4 changed files with 48 additions and 19 deletions

View File

@@ -20,4 +20,7 @@ object StringUtil {
def urlDecode(value: String): String = URLDecoder.decode(value, "UTF-8")
def escapeHtml(value: String): String =
value.replace("&", "&amp;").replace("<", "&gt;").replace(">", "&gt;").replace("\"", "&quot;")
}