1
0
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:
Loic Blot 2014-09-15 18:44:31 +00:00
parent fb0083a28a
commit dd67fed01a

View File

@ -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) {