diff options
author | Cash Costello <cash.costello@gmail.com> | 2012-06-23 10:35:29 -0400 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2012-06-23 10:35:29 -0400 |
commit | 32b9e8488957c109db3fee86a0f941d3685cb52b (patch) | |
tree | 95c46685fef0418f90eba26e5be32b06bfbc2343 /mod/blog | |
parent | 5e16ef8e61e7674ac8caa6ee770e106983d261da (diff) | |
download | elgg-32b9e8488957c109db3fee86a0f941d3685cb52b.tar.gz elgg-32b9e8488957c109db3fee86a0f941d3685cb52b.tar.bz2 |
Fixes #4610 better handling of content requiring a logged in user
Diffstat (limited to 'mod/blog')
-rw-r--r-- | mod/blog/lib/blog.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mod/blog/lib/blog.php b/mod/blog/lib/blog.php index 43de7a646..9a02a8cc3 100644 --- a/mod/blog/lib/blog.php +++ b/mod/blog/lib/blog.php @@ -22,8 +22,9 @@ function blog_get_page_content_read($guid = NULL) { $return['filter'] = ''; if (!elgg_instanceof($blog, 'object', 'blog')) { - $return['content'] = elgg_echo('noaccess'); - return $return; + register_error(elgg_echo('noaccess')); + $_SESSION['last_forward_from'] = current_page_url(); + forward(''); } $return['title'] = $blog->title; |