summaryrefslogtreecommitdiff
path: root/classes/Notice.php
diff options
context:
space:
mode:
authorZach Copley <zach@controlyourself.ca>2009-01-23 01:20:00 -0800
committerZach Copley <zach@controlyourself.ca>2009-01-23 01:20:00 -0800
commit0ef33663ce0b3739e8e9eb3b9951dee5059c6b3b (patch)
tree179a9aaa7f7828489e93fca86ceeaa01b4d270a2 /classes/Notice.php
parentb13374faa568e4e77478b9ffe5c800758ffdc3f3 (diff)
parent6b5fb0ab7d8c2e982052a48270e882e7f7379743 (diff)
Merge branch 'master' of ssh://zach@dev.controlyourself.ca/var/www/trunk
Diffstat (limited to 'classes/Notice.php')
-rw-r--r--classes/Notice.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/classes/Notice.php b/classes/Notice.php
index de7540705..4a06c9258 100644
--- a/classes/Notice.php
+++ b/classes/Notice.php
@@ -129,6 +129,8 @@ class Notice extends Memcached_DataObject
$notice->is_local = $is_local;
}
+ $notice->query('BEGIN');
+
$notice->reply_to = $reply_to;
$notice->created = common_sql_now();
$notice->content = common_shorten_links($content);
@@ -160,6 +162,9 @@ class Notice extends Memcached_DataObject
$notice->saveTags();
$notice->saveGroups();
+ $notice->addToInboxes();
+ $notice->query('COMMIT');
+
# Clear the cache for subscribed users, so they'll update at next request
# XXX: someone clever could prepend instead of clearing the cache
@@ -167,7 +172,6 @@ class Notice extends Memcached_DataObject
$notice->blowCaches();
}
- $notice->addToInboxes();
return $notice;
}