本文介绍了删除xcart中的制造商的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用xcart
4.7.删除制造商后,所有产品均重命名为还原产品,并且所有详细信息均已损坏.我试图进行数据库完整性检查,但没有结果.
I am using xcart
4.7. After removing a manufacturer, all products renamed as restored products and all details are corrupted. I tried to database integrity checking but no result.
推荐答案
感谢Sarath S Rajendran的bug本地化.
Thank you, Sarath S Rajendran, for the bug localization.
已在X-Cart 4.7.8中修复.自定义代码不会在没有参数的情况下调用func_delete_product().
Fixed in X-Cart 4.7.8. Custom code hasn't to call func_delete_product() without params.
打错电话
func_delete_product();
func_delete_product(0);
func_delete_product('');
func_delete_product(null);
正确的呼叫
func_delete_product(3123);
func_delete_product(3123,false);
func_delete_product(0,false,true);
这篇关于删除xcart中的制造商的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!