fixed: item content should not be escaped in 'raw' mode

(it was not escaped only when execute bits were set)



git-svn-id: svn://ttmath.org/publicrep/winix/trunk@956 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
Tomasz Sowa 2014-08-03 18:33:07 +00:00
parent 160ddc258d
commit 8379acdb7f
1 changed files with 2 additions and 1 deletions

View File

@ -492,7 +492,8 @@ bool sent = false;
{
if( cur.request->function == &functions.fun_cat )
{
cur.request->out_streams[0] << cur.request->item.content; // !! CHECK ME is it ok?
TemplatesFunctions::item_print_content(cur.request->out_streams[0],
cur.request->item.content, cur.request->item.content_type);
sent = true;
}
else