fixed: rm winix function returned incorrectly formated json when using jquery upload (delete file button)

git-svn-id: svn://ttmath.org/publicrep/winix/trunk@1006 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
Tomasz Sowa 2015-03-20 11:00:22 +00:00
parent 901663b145
commit ae2a885d6c
1 changed files with 10 additions and 8 deletions

View File

@ -5,7 +5,7 @@
*/
/*
* Copyright (c) 2008-2014, Tomasz Sowa
* Copyright (c) 2008-2015, Tomasz Sowa
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@ -493,18 +493,20 @@ void Rm::Clear()
void Rm::CreateJSON(bool status)
{
auto & out = cur->request->out_streams[0];
using TemplatesFunctions::R;
PT::WTextStream buf;
out << "{\"files\": [{\"";
JSONescape(out, cur->request->item.url);
out << "\": ";
JSONescape(buf, cur->request->item.url);
auto & out = cur->request->out_streams[0];
out << R("{\"files\": [{\"") << R(buf) << R("\": ");
if( status )
out << "true";
out << R("true");
else
out << "false";
out << R("false");
out << "}]}";
out << R("}]}");
cur->request->page_generated = true;
cur->request->use_html_filter[0] = false;