服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > ecshop教程 >

ecshop配送方式出错lib_common.php on line 959

时间:2010-11-02 22:42来源: 作者: 点击:
ecshop配送方式出错lib_common.php on line 959

 ecshop只带的配送方式BUG

只要不是正式商业版的ECSHOP都会出现 配送方式配置出错。提示

Warning: number_format() expects parameter 1 to be double, string given in D:\**\lib_common.php on line 959

Warning: number_format() expects parameter 1 to be double, string given in D:\**\lib_common.php on line 959

原因是配送插件里面的免费额度为0,ec本身的bug导致了$price的值为空值,直接调用number_format出现了错误。

修改:

将includes\lib_common.php 的957~959行:
  else
    {
        $price = number_format($price, 2, '.', '');
    }

修改为

  else
    {
        if(!$price){
                $price = 0;
        }
        $price = number_format($price, 2, '.', '');
    }

即可。

(责任编辑:最模板)
顶一下
(1)
50%
踩一下
(1)
50%
------分隔线----------------------------