diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-12-31 08:52:24 -0500 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2011-12-31 08:52:24 -0500 |
commit | ccd4b6e48010cfc62c2ee6c942836c1ab9c9c7fd (patch) | |
tree | dea1849f44b58eabddd851654792b5f7ae6e3cb9 /mod/blog | |
parent | e357d172fa71f9b940ed35df0dd5ee6eb6777d5a (diff) | |
download | elgg-ccd4b6e48010cfc62c2ee6c942836c1ab9c9c7fd.tar.gz elgg-ccd4b6e48010cfc62c2ee6c942836c1ab9c9c7fd.tar.bz2 |
Fixes #4253 added backward compatibility for blog read url
Diffstat (limited to 'mod/blog')
-rw-r--r-- | mod/blog/start.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mod/blog/start.php b/mod/blog/start.php index 90a800799..a8553b4b8 100644 --- a/mod/blog/start.php +++ b/mod/blog/start.php @@ -125,6 +125,7 @@ function blog_page_handler($page) { $params = blog_get_page_content_archive($user->guid, $page[2], $page[3]); break; case 'view': + case 'read': // Elgg 1.7 compatibility $params = blog_get_page_content_read($page[1]); break; case 'add': |