summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/util.php9
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/util.php b/lib/util.php
index 3dec09d8e..e62e800dc 100644
--- a/lib/util.php
+++ b/lib/util.php
@@ -819,13 +819,16 @@ function common_broadcast_notice($notice, $remote=false) {
# Stick the notice on the queue
function common_enqueue_notice($notice) {
- common_log(LOG_INFO, 'queueing notice ID = ' . $notice->id);
+ common_log(LOG_INFO, 'start queueing notice ID = ' . $notice->id);
$qi = new Queue_item();
- $qi->query('BEGIN');
$qi->notice_id = $notice->id;
$qi->created = DB_DataObject_Cast::dateTime();
$result = $qi->insert();
- $qi->query('COMMIT');
+ if ($result === FALSE) {
+ common_log_db_error($qi, 'INSERT', __FILE__);
+ return;
+ }
+ common_log(LOG_INFO, 'complete queueing notice ID = ' . $notice->id);
return $result;
}