View Single Post
  #20  
Old 08-09-2006, 01:11 PM
 
lachild lachild is offline
 

Advanced Member
  
Join Date: May 2006
Posts: 92
 

Default

fractalspin,

Your problem is right here...

Code:
xcart_pricing 1 xcart_featured_products,

This means while the $direction is working its not being translated...

Might try something like this..
Code:
case "add_date": if ($direction == '1'){ $direction_var = 'DESC'; } if ($direction == '0') { $direction_var = 'ASC'; } $sort_string = "$sql_tbl[products].add_date $direction_var"; break;
__________________
Westin Shafer
Come Together Technologies
http://www.ComeTogetherTechnologies.com
Reply With Quote