正在显示
1 个修改的文件
包含
4 行增加
和
4 行删除
| @@ -361,10 +361,10 @@ class RelayInquiry extends Command | @@ -361,10 +361,10 @@ class RelayInquiry extends Command | ||
| 361 | //FB询盘的全局过滤规则 | 361 | //FB询盘的全局过滤规则 |
| 362 | $fb_config = ReInquiryConfig::getDefaultConfigCache(ReInquiryConfig::TYPE_FILTER_WORDS); | 362 | $fb_config = ReInquiryConfig::getDefaultConfigCache(ReInquiryConfig::TYPE_FILTER_WORDS); |
| 363 | 363 | ||
| 364 | - $fb_config['filter_contents'] = array_filter(explode("\r\n", $fb_config['filter_contents']?:'')); | ||
| 365 | - $fb_config['filter_emails'] = array_filter(explode("\r\n", $fb_config['filter_emails']?:'')); | ||
| 366 | - $fb_config['filter_mobiles'] = array_filter(explode("\r\n", $fb_config['filter_mobiles']?:'')); | ||
| 367 | - $fb_config['filter_names'] = array_filter(explode("\r\n", $fb_config['filter_names']?:'')); | 364 | + $fb_config['filter_contents'] = array_filter(explode("\r\n", $fb_config['filter_contents']??'')); |
| 365 | + $fb_config['filter_emails'] = array_filter(explode("\r\n", $fb_config['filter_emails']??'')); | ||
| 366 | + $fb_config['filter_mobiles'] = array_filter(explode("\r\n", $fb_config['filter_mobiles']??'')); | ||
| 367 | + $fb_config['filter_names'] = array_filter(explode("\r\n", $fb_config['filter_names']??'')); | ||
| 368 | 368 | ||
| 369 | $config['filter_contents'] = array_unique(array_merge($fb_config['filter_contents'],$config['filter_contents'])); | 369 | $config['filter_contents'] = array_unique(array_merge($fb_config['filter_contents'],$config['filter_contents'])); |
| 370 | $config['filter_emails'] = array_unique(array_merge($fb_config['filter_emails'],$config['filter_emails'])); | 370 | $config['filter_emails'] = array_unique(array_merge($fb_config['filter_emails'],$config['filter_emails'])); |
-
请 注册 或 登录 后发表评论