File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ public function __construct()
35
35
* @param null $category_slug
36
36
* @return mixed
37
37
*/
38
- public function index ($ locale , $ category_slug = null , Request $ request )
38
+ public function index ($ locale , Request $ request , $ category_slug = null )
39
39
{
40
40
// the published_at + is_published are handled by BinshopsBlogPublishedScope, and don't take effect if the logged in user can manageb log posts
41
41
@@ -127,7 +127,7 @@ public function search(Request $request)
127
127
public function view_category ($ locale , $ hierarchy , Request $ request )
128
128
{
129
129
$ categories = explode ('/ ' , $ hierarchy );
130
- return $ this ->index ($ locale , end ($ categories ), $ request );
130
+ return $ this ->index ($ locale , $ request , end ($ categories ));
131
131
}
132
132
133
133
/**
You can’t perform that action at this time.
0 commit comments