diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-05-28 18:19:22 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-05-28 18:19:22 -0400 |
commit | 3532cd0490a70b54a92108549de6042459fd8469 (patch) | |
tree | 13e0aa7b5fd7da79867d304850a27753df212424 /classes/Notice.php | |
parent | 047038959c068364f2efa030ba63571a492b9cda (diff) |
Only enqueue inbox-dependent transports after inboxes have been filled
Diffstat (limited to 'classes/Notice.php')
-rw-r--r-- | classes/Notice.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Notice.php b/classes/Notice.php index 771a4e715..8dd14b3b7 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -195,12 +195,12 @@ class Notice extends Memcached_DataObject $notice->saveReplies(); $notice->saveTags(); - $notice->saveGroups(); if (common_config('queue', 'enabled')) { $notice->addToAuthorInbox(); } else { $notice->addToInboxes(); + $notice->saveGroups(); } $notice->query('COMMIT'); |