|
@@ -450,13 +450,13 @@ class Sms_customer_list_adminAction extends Action{
|
|
if(!empty($array[0])){
|
|
if(!empty($array[0])){
|
|
$tel = trim($array[0]);
|
|
$tel = trim($array[0]);
|
|
|
|
|
|
- $telsArr[] = strval($tel);
|
|
|
|
|
|
+ $telsArr[] = $tel;
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
if($telsArr) {
|
|
if($telsArr) {
|
|
- $telsStr = implode(',', $telsArr);
|
|
|
|
|
|
+ $telsStr = "'" . implode("','", $telsArr) . "'";
|
|
$result = $admin->deleteSmsCustomerByTel($telsStr);
|
|
$result = $admin->deleteSmsCustomerByTel($telsStr);
|
|
$info = '删除数据成功';
|
|
$info = '删除数据成功';
|
|
}
|
|
}
|