diff --git a/Application/Sdk/Controller/WapPayController.class.php b/Application/Sdk/Controller/WapPayController.class.php index 1c278550..fc5f2048 100644 --- a/Application/Sdk/Controller/WapPayController.class.php +++ b/Application/Sdk/Controller/WapPayController.class.php @@ -245,7 +245,11 @@ class WapPayController extends BaseController{ if ($rsign['respCode'] == 'success') { // 认证成功发送短信 $this->success('签约短信发送成功', '', true); } else { - $this->error($rsign['respMessage'], '', true); + if (strlen($rsign['respMessage']) > 100) { + $this->error('填写信息有误,请核对!', '', true); + } else { + $this->error($rsign['respMessage'], '', true); + } } // var_dump($rsign); exit();