diff options
author | randomdan <randomdan@localhost> | 2011-07-19 17:04:41 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2011-07-19 17:04:41 +0000 |
commit | af7cb2d991a4689f47308b0ce3a59fc4730a0db4 (patch) | |
tree | 5c007b22273384d9933d604950b53266562eb67b | |
parent | Don't call resolveScript quite so much (diff) | |
download | project2-af7cb2d991a4689f47308b0ce3a59fc4730a0db4.tar.bz2 project2-af7cb2d991a4689f47308b0ce3a59fc4730a0db4.tar.xz project2-af7cb2d991a4689f47308b0ce3a59fc4730a0db4.zip |
Add missing change to external resolveScript
-rw-r--r-- | project2/cgi/cgiStageRequest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/project2/cgi/cgiStageRequest.cpp b/project2/cgi/cgiStageRequest.cpp index a050146..e649551 100644 --- a/project2/cgi/cgiStageRequest.cpp +++ b/project2/cgi/cgiStageRequest.cpp @@ -21,7 +21,7 @@ CgiApplicationEngine::RequestStage::run() { runChecks(); executeTasks(); - return NextStage(present.empty() ? NULL : new PresentStage(e, present), this); + return NextStage(present.empty() ? NULL : new PresentStage(e, e->resolveScript(e->presentRoot, present)), this); } const std::string contentType = "text/plain"; |