fix path for individual news item
href resolves to index.php/slug instead of index.php/news/slug
diff --git a/user_guide_src/source/tutorial/news_section.rst b/user_guide_src/source/tutorial/news_section.rst
index ad9ed41..3f4c9f0 100644
--- a/user_guide_src/source/tutorial/news_section.rst
+++ b/user_guide_src/source/tutorial/news_section.rst
@@ -149,7 +149,7 @@
<div class="main">
<?php echo $news_item['text'] ?>
</div>
- <p><a href="<?php echo $news_item['slug'] ?>">View article</a></p>
+ <p><a href="news/<?php echo $news_item['slug'] ?>">View article</a></p>
<?php endforeach ?>