正在显示
1 个修改的文件
包含
6 行增加
和
1 行删除
@@ -190,7 +190,12 @@ class MailListV2 extends Base { | @@ -190,7 +190,12 @@ class MailListV2 extends Base { | ||
190 | } | 190 | } |
191 | } | 191 | } |
192 | 192 | ||
193 | - $sql .= ' and ('. implode(' or ',$subject).' or '. implode(' or ',$from_not_in_like) .')'; | 193 | + if($subject || $from_not_in_like){ |
194 | + $sql .= ' and ('; | ||
195 | + if($subject) $sql.= implode(' or ',$subject); | ||
196 | + if($from_not_in_like) $sql.= ' or '.implode(' or ',$from_not_in_like); | ||
197 | + $sql .= ')'; | ||
198 | + } | ||
194 | 199 | ||
195 | 200 | ||
196 | /************ 2024-09-02 *************/ | 201 | /************ 2024-09-02 *************/ |
-
请 注册 或 登录 后发表评论