作者 邓超

x

@@ -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 *************/