added: macro APPPREPARE

void AppFunction(int code);



git-svn-id: svn://ttmath.org/publicrep/cmslu/trunk@503 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2009-05-21 19:27:16 +00:00
parent 2dd3fc7df8
commit 3d001e7458
4 changed files with 13 additions and 4 deletions

View File

@@ -12,7 +12,7 @@
#include "../core/error.h"
#include "../core/db.h"
#include "../core/data.h"
#include "../app/content.h"
@@ -174,6 +174,9 @@ void Content::MakeStandardFunction()
void Content::MakePost()
{
if( !request.pfunction )
SetDefaultFunction();
if( !request.pfunction )
{
log << log1 << "Content: MakePost: no function" << logend;
@@ -230,6 +233,10 @@ void Content::Make()
{
if( DirsHaveReadExecPerm() )
{
#ifdef APPPREPARE
AppContent::PrepareApp();
#endif
if( request.method == Request::post )
MakePost();