|
...
|
...
|
@@ -361,10 +361,10 @@ class RelayInquiry extends Command |
|
|
|
//FB询盘的全局过滤规则
|
|
|
|
$fb_config = ReInquiryConfig::getDefaultConfigCache(ReInquiryConfig::TYPE_FILTER_WORDS);
|
|
|
|
|
|
|
|
$fb_config['filter_contents'] = array_filter(explode("\r\n", $fb_config['filter_contents']?:''));
|
|
|
|
$fb_config['filter_emails'] = array_filter(explode("\r\n", $fb_config['filter_emails']?:''));
|
|
|
|
$fb_config['filter_mobiles'] = array_filter(explode("\r\n", $fb_config['filter_mobiles']?:''));
|
|
|
|
$fb_config['filter_names'] = array_filter(explode("\r\n", $fb_config['filter_names']?:''));
|
|
|
|
$fb_config['filter_contents'] = array_filter(explode("\r\n", $fb_config['filter_contents']??''));
|
|
|
|
$fb_config['filter_emails'] = array_filter(explode("\r\n", $fb_config['filter_emails']??''));
|
|
|
|
$fb_config['filter_mobiles'] = array_filter(explode("\r\n", $fb_config['filter_mobiles']??''));
|
|
|
|
$fb_config['filter_names'] = array_filter(explode("\r\n", $fb_config['filter_names']??''));
|
|
|
|
|
|
|
|
$config['filter_contents'] = array_unique(array_merge($fb_config['filter_contents'],$config['filter_contents']));
|
|
|
|
$config['filter_emails'] = array_unique(array_merge($fb_config['filter_emails'],$config['filter_emails']));
|
...
|
...
|
|