summaryrefslogtreecommitdiff
path: root/project2/cgi
diff options
context:
space:
mode:
authorrandomdan <randomdan@localhost>2011-12-20 16:43:00 +0000
committerrandomdan <randomdan@localhost>2011-12-20 16:43:00 +0000
commit2840c5f9dfb72a1756581f238d3476a0f96067f6 (patch)
treedb2f90928a07d789ae7686ca53bcb906819aacc5 /project2/cgi
parentPluggable file system row filters (diff)
downloadproject2-2840c5f9dfb72a1756581f238d3476a0f96067f6.tar.bz2
project2-2840c5f9dfb72a1756581f238d3476a0f96067f6.tar.xz
project2-2840c5f9dfb72a1756581f238d3476a0f96067f6.zip
Store options set name
Fix error in default CGI output options settings
Diffstat (limited to 'project2/cgi')
-rw-r--r--project2/cgi/cgiOutputOptions.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/project2/cgi/cgiOutputOptions.cpp b/project2/cgi/cgiOutputOptions.cpp
index f9a6d86..e18a0b8 100644
--- a/project2/cgi/cgiOutputOptions.cpp
+++ b/project2/cgi/cgiOutputOptions.cpp
@@ -23,11 +23,11 @@ OutputOptionsLoader::OutputOptionsLoader() :
{
opts
("cgi.output.core", Options::value(&OutputOptions::core, true), "Core messages")
- ("cgi.output.session", Options::value(&OutputOptions::core, true), "Session values")
- ("cgi.output.timing", Options::value(&OutputOptions::core, true), "Timing")
- ("cgi.output.environment", Options::value(&OutputOptions::core, true), "Environment")
- ("cgi.output.url", Options::value(&OutputOptions::core, true), "URL breakdown")
- ("cgi.output.parameters", Options::value(&OutputOptions::core, true), "Parameters")
+ ("cgi.output.session", Options::value(&OutputOptions::session, true), "Session values")
+ ("cgi.output.timing", Options::value(&OutputOptions::timing, true), "Timing")
+ ("cgi.output.environment", Options::value(&OutputOptions::environment, true), "Environment")
+ ("cgi.output.url", Options::value(&OutputOptions::url, true), "URL breakdown")
+ ("cgi.output.parameters", Options::value(&OutputOptions::parameters, true), "Parameters")
;
}