Index: openacs-4/packages/acs-templating/tcl/filter-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/tcl/filter-procs.tcl,v diff -u -r1.2 -r1.3 --- openacs-4/packages/acs-templating/tcl/filter-procs.tcl 9 May 2001 05:15:58 -0000 1.2 +++ openacs-4/packages/acs-templating/tcl/filter-procs.tcl 26 Aug 2001 13:27:55 -0000 1.3 @@ -67,6 +67,7 @@ ad_proc -public template::forward { url } { + ns_log Notice "url = $url" if { ! [string match http://* $url] } { if { [string index $url 0] != "/" } { @@ -77,9 +78,13 @@ } ns_log Notice "Redirecting to $url" + global errorInfo + #ns_log Notice "errorInfo = $errorInfo" - ns_returnredirect $url + set ret_val [ns_returnredirect $url] + #ns_log Notice "ret_val = $ret_val, errorInfo = $errorInfo" + error FILTER_ABORT }