Index: openacs-4/packages/acs-tcl/tcl/http-client-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/http-client-procs.tcl,v diff -u -N -r1.24 -r1.25 --- openacs-4/packages/acs-tcl/tcl/http-client-procs.tcl 5 Aug 2018 21:08:07 -0000 1.24 +++ openacs-4/packages/acs-tcl/tcl/http-client-procs.tcl 16 Aug 2018 15:39:11 -0000 1.25 @@ -1442,7 +1442,7 @@ # Redirection handling - if {$depth <= $max_depth} { + if {$depth < $max_depth} { incr depth set redirection [util::http::follow_redirects \ -url $url \ @@ -1815,7 +1815,7 @@ set page [string range $response 0 end-4] # Redirection handling - if {$depth <= $max_depth} { + if {$depth < $max_depth} { incr depth set redirection [util::http::follow_redirects \ -url $url \