winix/templates/thread.cpp

29 lines
359 B
C++
Executable File

/*
* This file is a part of CMSLU -- Content Management System like Unix
* and is not publicly distributed
*
* Copyright (c) 2008, Tomasz Sowa
* All rights reserved.
*
*/
#include "templates.h"
namespace TemplatesFunctions
{
void thread_subject(Info & i)
{
HtmlEscape(i.out, request.thread.subject);
}
} // namespace TemplatesFunctions