Test Setup Failed
Push — master ( 18aad0...79eeb7 )
by Marcel
05:40
created
app/Http/Controllers/BoardController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
     public function show_thread($threadid){
87 87
         $posts = BoardPost::with('user', 'thread', 'cat')->whereThreadId($threadid)->orderBy('id')->paginate(25);
88 88
         if(!Input::get('page')){
89
-           return redirect('board/thread/'.$threadid.'?page='.$posts->lastPage());
89
+            return redirect('board/thread/'.$threadid.'?page='.$posts->lastPage());
90 90
         }else{
91 91
             return view('board.threads.show', [
92 92
                 'posts' => $posts,
Please login to merge, or discard this patch.