removed some thread and ticket information from request

they are in FunThread and FunTicket classes now
added funtion FunUptime (I forgot about it)



git-svn-id: svn://ttmath.org/publicrep/winix/trunk@631 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2010-08-10 20:43:38 +00:00
parent 76897b8a83
commit 9901c63ede
79 changed files with 1219 additions and 993 deletions

View File

@@ -39,13 +39,13 @@ int ParseCKeditorFun()
{
ckeditor_getparser.fun_num = 2; // default if there is a problem with parsing info
if( !request->get_table.empty() )
if( !request->get_tab.empty() )
{
size_t last = request->get_table.size()-1;
size_t last = request->get_tab.size()-1;
if( !request->get_table[last].empty() )
if( !request->get_tab[last].empty() )
{
const char * str = request->get_table[last].c_str() + 1; // the first char is '?'
const char * str = request->get_tab[last].c_str() + 1; // the first char is '?'
ckeditor_getparser.Parse(str);
}
}