From 73f3fb396dc2ba089b4e32b0bd63dc3e615f8466 Mon Sep 17 00:00:00 2001 From: deva Date: Mon, 20 Apr 2009 09:50:30 +0000 Subject: Added utf8 decode. --- server/src/queryparser.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'server/src/queryparser.cc') diff --git a/server/src/queryparser.cc b/server/src/queryparser.cc index f8d4a09..76b24a6 100644 --- a/server/src/queryparser.cc +++ b/server/src/queryparser.cc @@ -59,7 +59,7 @@ void QueryParser::startTag(std::string name, std::map< std::string, std::string> } if(name == "value") { - stack.back()->values[attributes["name"]] = attributes["value"]; + stack.back()->values[attributes["name"]] = utf8.decode(attributes["value"]); } } -- cgit v1.2.3