Index: openacs.org-dev/packages/ecommerce/www/admin/tools/sort-custom.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs.org-dev/packages/ecommerce/www/admin/tools/sort-custom.tcl,v diff -u -r1.1.1.2 -r1.1.1.3 --- openacs.org-dev/packages/ecommerce/www/admin/tools/sort-custom.tcl 25 Jul 2002 18:47:13 -0000 1.1.1.2 +++ openacs.org-dev/packages/ecommerce/www/admin/tools/sort-custom.tcl 8 Oct 2002 15:47:09 -0000 1.1.1.3 @@ -3,7 +3,7 @@ # Takes the data generated from ad_table_sort_form function # and inserts into the user_custom table # -# on succes it does an ns_returnredirect to return_url&$item_group=$item +# on succes it does an ad_returnredirect to return_url&$item_group=$item # # davis@xarg.net 20000105 @@ -23,15 +23,15 @@ ad_return_complaint 1 "
  • I was unable to delete the sort. The database said
    $errmsg
    \n" return } - ns_returnredirect "$return_url" - return + ad_returnredirect "$return_url" + ad_script_abort } if {[empty_string_p $item]} { ad_return_complaint 1 "
  • You did not specify a name for this sort" - return + ad_script_abort } @@ -50,7 +50,7 @@ if {[empty_string_p $col_clean]} { ad_return_complaint 1 "
  • You did not specify any columns to sort by" - return + ad_script_abort } set col_clean [join $col_clean ","] @@ -66,8 +66,8 @@ returning value into :1" $col_clean } { ad_return_complaint 1 "
  • I was unable to insert your table customizations. The database said
    $errmsg
    \n" - return + ad_script_abort } -ns_returnredirect "$return_url&$item_group=[ns_urlencode $item]" +ad_returnredirect "$return_url&$item_group=[ns_urlencode $item]"