mirror of
https://github.com/nerzhul/ocsms.git
synced 2025-06-10 09:26:15 +00:00
add missing return for getAllIds and prevent duplicate IDs
This commit is contained in:
parent
fb0083a28a
commit
dd67fed01a
@ -31,8 +31,12 @@ class SmsMapper extends Mapper {
|
||||
if (!isset($smsList[$mbox])) {
|
||||
$smsList[$mbox] = array();
|
||||
}
|
||||
array_push($smsList[$mbox], $row["sms_id"]);
|
||||
|
||||
if (!in_array($row["sms_id"], $smsList[$mbox])) {
|
||||
array_push($smsList[$mbox], $row["sms_id"]);
|
||||
}
|
||||
}
|
||||
return $smsList;
|
||||
}
|
||||
|
||||
public function writeToDB ($userId, $smsList, $purgeAllSmsBeforeInsert = false) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user