From f350d90e384a03629f95b1b5be9b7ad603438f46 Mon Sep 17 00:00:00 2001 From: Cash Costello Date: Sat, 23 Feb 2013 09:21:44 -0500 Subject: Fixes #4802 notifications sent when status is newly set to published --- mod/blog/actions/blog/save.php | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'mod/blog/actions/blog/save.php') diff --git a/mod/blog/actions/blog/save.php b/mod/blog/actions/blog/save.php index 6da70462a..910da9838 100644 --- a/mod/blog/actions/blog/save.php +++ b/mod/blog/actions/blog/save.php @@ -158,6 +158,11 @@ if (!$error) { if (($new_post || $old_status == 'draft') && $status == 'published') { add_to_river('river/object/blog/create', 'create', $blog->owner_guid, $blog->getGUID()); + // we only want notifications sent when post published + register_notification_object('object', 'blog', elgg_echo('blog:newpost')); + elgg_trigger_event('publish', 'blog', $blog); + + // reset the creation time for posts that move from draft to published if ($guid) { $blog->time_created = time(); $blog->save(); -- cgit v1.2.3