aboutsummaryrefslogtreecommitdiff
path: root/mod/blog/actions
diff options
context:
space:
mode:
authorSem <sembrestels@riseup.net>2012-08-28 18:43:39 +0200
committerSem <sembrestels@riseup.net>2012-08-28 18:43:39 +0200
commitf3f3561b7ce6462e4f75649bab874b3112867dc3 (patch)
treed017b2d5aff45549d2a08c2558553c51edb10a83 /mod/blog/actions
parentafa701d29525b8ebd3782d3efa6838c14ff9cc54 (diff)
parent9ccbd106a87a1742a61cc4df0e9ead921046772a (diff)
downloadelgg-f3f3561b7ce6462e4f75649bab874b3112867dc3.tar.gz
elgg-f3f3561b7ce6462e4f75649bab874b3112867dc3.tar.bz2
Merge branch '1.8' of git://github.com/Elgg/Elgg into lorea-preprod
Diffstat (limited to 'mod/blog/actions')
-rw-r--r--mod/blog/actions/blog/save.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/blog/actions/blog/save.php b/mod/blog/actions/blog/save.php
index 8923cd0d2..048bc00be 100644
--- a/mod/blog/actions/blog/save.php
+++ b/mod/blog/actions/blog/save.php
@@ -145,7 +145,7 @@ if (!$error) {
// add to river if changing status or published, regardless of new post
// because we remove it for drafts.
if (($new_post || $old_status == 'draft') && $status == 'published') {
- add_to_river('river/object/blog/create', 'create', elgg_get_logged_in_user_guid(), $blog->getGUID());
+ add_to_river('river/object/blog/create', 'create', $blog->owner_guid, $blog->getGUID());
if ($guid) {
$blog->time_created = time();
@@ -170,4 +170,4 @@ if (!$error) {
} else {
register_error($error);
forward($error_forward_url);
-} \ No newline at end of file
+}