Просмотр исходного кода

消息管理设置保存报错修复

吴昊天 2 лет назад
Родитель
Сommit
74ee4ce1bb
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      crmeb/app/services/message/SystemNotificationServices.php

+ 1 - 1
crmeb/app/services/message/SystemNotificationServices.php

@@ -113,7 +113,7 @@ class SystemNotificationServices extends BaseServices
     {
     {
         $type = $data['type'];
         $type = $data['type'];
         $id = $data['id'];
         $id = $data['id'];
-        $info = $this->dao->get($id, 'id');
+        $info = $this->dao->get($id);
         if (!$info) {
         if (!$info) {
             throw new AdminException(100026);
             throw new AdminException(100026);
         }
         }