Merge pull request #456 from Gelmir/fix_webui_ap

Allow/Fix special characters in json replies in WebUI
This commit is contained in:
Christophe Dumez 2013-03-10 00:48:45 -08:00
commit e5f0edaa0a

View file

@ -76,9 +76,7 @@ QString json::toJson(const QVariant& v) {
result += "\\t";
break;
case '\"':
case '\'':
case '\\':
case '&':
result += '\\';
case '\0':
default: