diff options
Diffstat (limited to 'src/web/_controller/blog.php')
-rw-r--r-- | src/web/_controller/blog.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/_controller/blog.php b/src/web/_controller/blog.php index b2ddbcc..922ae72 100644 --- a/src/web/_controller/blog.php +++ b/src/web/_controller/blog.php @@ -45,7 +45,7 @@ class Blog_controller extends Controller { } $this->view('header', $data); $this->view('apps/blog_post', $data); - $ref = "blog/post{$name}"; + $ref = "blog/post/{$name}"; $this->comments_controller->comments($data['post']['meta']['name'], $ref); $this->view('footer', $data); } |