소스 검색

Update Post page

Use the link from the post to redirect.
Visman 4 년 전
부모
커밋
75e8387b09
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/Models/Pages/Post.php

+ 1 - 1
app/Models/Pages/Post.php

@@ -327,6 +327,6 @@ class Post extends Page
             }
         }
 
-        return $this->c->Redirect->page('ViewPost', ['id' => $merge ? $lastPost->id : $post->id])->message('Post redirect');
+        return $this->c->Redirect->url($merge ? $lastPost->link : $post->link)->message('Post redirect');
     }
 }