
interchange-cvs at icdevgroup
Nov 5, 2009, 7:21 PM
Post #1 of 1
(34 views)
Permalink
|
|
[SCM] Interchange branch, master, updated. REL_5_7_3-1-gef39c47
|
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Interchange". The branch, master has been updated via ef39c47171866f46a9f8f0adf608b8502ac9911a (commit) from bf90ac73e96954deace65cdad0f2b69f62f376d4 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit ef39c47171866f46a9f8f0adf608b8502ac9911a Author: David Christensen <david[at]endpoint.com> Date: Thu Nov 5 21:15:46 2009 -0600 Remove short-circuit to fully decouple mv_tmp_session and $Vend::Robot ----------------------------------------------------------------------- Summary of changes and diff: lib/Vend/Server.pm | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/lib/Vend/Server.pm b/lib/Vend/Server.pm index 878b092..12d102b 100644 --- a/lib/Vend/Server.pm +++ b/lib/Vend/Server.pm @@ -283,7 +283,6 @@ EOF parse_post(\$CGI::query_string); } - return if $CGI::values{mv_tmp_session}; #::logDebug("Check robot UA=$Global::RobotUA IP=$Global::RobotIP"); if ($Global::RobotIP and $CGI::remote_addr =~ $Global::RobotIP) { @@ -310,7 +309,7 @@ EOF } } - $CGI::values{mv_tmp_session} = 1 if $Vend::Robot; + $CGI::values{mv_tmp_session} ||= 1 if $Vend::Robot; } # This is called by parse_multipart hooks/post-receive -- Interchange _______________________________________________ interchange-cvs mailing list interchange-cvs[at]icdevgroup.org http://www.icdevgroup.org/mailman/listinfo/interchange-cvs
|