diff options
author | ivan <ivan> | 2002-07-08 10:52:47 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-07-08 10:52:47 +0000 |
commit | e61703420a7eaef1f16ad4251cc7733e7a35604f (patch) | |
tree | bb2564eed0d708bda6773fad7782973b82fd7161 /httemplate/search | |
parent | 98d6bdc2b96ad27bc1bfa30721715e3f33f5c717 (diff) |
remove perl-side sort routines, no longer needed
Diffstat (limited to 'httemplate/search')
-rwxr-xr-x | httemplate/search/cust_bill.cgi | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/httemplate/search/cust_bill.cgi b/httemplate/search/cust_bill.cgi index d1b054dcd..586399a41 100755 --- a/httemplate/search/cust_bill.cgi +++ b/httemplate/search/cust_bill.cgi @@ -162,17 +162,4 @@ END } -# - -sub invnum_sort { - $a->invnum <=> $b->invnum; -} - -sub custnum_sort { - $a->custnum <=> $b->custnum || $a->invnum <=> $b->invnum; -} - -sub date_sort { - $a->_date <=> $b->_date || $a->invnum <=> $b->invnum; -} %> |