Index: openacs-4/packages/ecommerce/www/billing.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ecommerce/www/billing.tcl,v diff -u -r1.3 -r1.4 --- openacs-4/packages/ecommerce/www/billing.tcl 17 Sep 2002 03:36:34 -0000 1.3 +++ openacs-4/packages/ecommerce/www/billing.tcl 18 Sep 2002 21:33:45 -0000 1.4 @@ -19,7 +19,7 @@ if {$user_id == 0} { set return_url "[ad_conn url]" ad_returnredirect "/register?[export_url_vars return_url]" - return + ad_script_abort } # user sessions: @@ -46,7 +46,7 @@ # so just redirect them to index.tcl ad_returnredirect [ec_url]index.tcl - return + ad_script_abort } if { $order_owner != $user_id } { @@ -61,7 +61,7 @@ # or they messed w/their user_session_id cookie; ad_returnredirect [ec_securelink [ec_url]checkout.tcl] - return + ad_script_abort } # make sure there's something in their shopping cart, otherwise @@ -73,7 +73,7 @@ from ec_items where order_id=:order_id"] == 0 } { ad_returnredirect [ec_url]shopping-cart - return + ad_script_abort } # Make sure there is an address for this order, otherwise they've @@ -97,7 +97,7 @@ and i.order_id = :order_id group by no_shipping_avail_p"]} { ad_returnredirect [ec_securelink [ec_url]checkout] - return + ad_script_abort } }