aboutsummaryrefslogtreecommitdiffstats
path: root/library/spam/b8/storage/storage_base.php
diff options
context:
space:
mode:
Diffstat (limited to 'library/spam/b8/storage/storage_base.php')
-rw-r--r--library/spam/b8/storage/storage_base.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/spam/b8/storage/storage_base.php b/library/spam/b8/storage/storage_base.php
index 49132751b..6b181ee96 100644
--- a/library/spam/b8/storage/storage_base.php
+++ b/library/spam/b8/storage/storage_base.php
@@ -318,7 +318,7 @@ abstract class b8_storage_base
if($count_ham !== 0 or $count_spam !== 0)
$this->_update($token, "$count_ham $count_spam " . $this->b8_config['today'], $uid);
else
- $this->_del($token);
+ $this->_del($token, $uid);
}
@@ -387,7 +387,7 @@ abstract class b8_storage_base
}
# We're done and can commit all changes to the database now
- $this->_commit();
+ $this->_commit($uid);
}