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 | 2d2d1b44d1ba07cda34eb8a85d0786c631154083 (patch) | |
tree | 5c007b22273384d9933d604950b53266562eb67b | |
parent | Don't call resolveScript quite so much (diff) | |
download | project2-2d2d1b44d1ba07cda34eb8a85d0786c631154083.tar.bz2 project2-2d2d1b44d1ba07cda34eb8a85d0786c631154083.tar.xz project2-2d2d1b44d1ba07cda34eb8a85d0786c631154083.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"; |