From: ivan Date: Sun, 12 Aug 2001 08:56:42 +0000 (+0000) Subject: don't use Apache::ASP-specific $Redirect object X-Git-Tag: merged-freeside_vpopmail_support~2 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=67e59b7ab85227889ca127b875b4138f018c844d;p=freeside.git don't use Apache::ASP-specific $Redirect object --- diff --git a/httemplate/edit/process/part_svc.cgi b/httemplate/edit/process/part_svc.cgi index 4c972e4d7..093d86a75 100755 --- a/httemplate/edit/process/part_svc.cgi +++ b/httemplate/edit/process/part_svc.cgi @@ -21,10 +21,9 @@ if ( $svcpart ) { if ( $error ) { $cgi->param('error', $error); - $Response->Redirect(popurl(2). "part_svc.cgi?". $cgi->query_string ); + print $cgi->redirect(popurl(2), "part_svc.cgi?". $cgi->query_string ); } else { - warn "redirecting to ". popurl(3)."browse/part_svc.cgi via $Response"; - $Response->Redirect(popurl(3)."browse/part_svc.cgi"); + print $cgi->redirect(popurl(3)."browse/part_svc.cgi"); } %>