让ecshop的浏览历史排序显示方法
具体的修改方法,如下,首先打开ecshop系统文件 includes/lib_insert.php,找到 insert_history() 函数部分,将:
" WHERE $where AND is_on_sale = 1 AND is_alone_sale = 1 AND is_delete = 0";//开源软件:phpfensi.com
修改为:
" WHERE $where AND is_on_sale = 1 AND is_alone_sale = 1 AND is_delete = 0 order by INSTR('".$_COOKIE['ECS']['history']."',goods_id)";
这样就可以了.

