mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
Fix type issue in getMovieRange function
This commit is contained in:
@@ -39,7 +39,7 @@ class MovieController extends BasePageController
|
||||
|
||||
$catarray = $category !== -1 ? [$category] : [];
|
||||
|
||||
$page = $request->input('page', 1);
|
||||
$page = (int) $request->input('page', 1);
|
||||
$offset = ($page - 1) * (int) config('nntmux.items_per_cover_page');
|
||||
|
||||
$orderby = $request->input('ob', '');
|
||||
|
||||
Reference in New Issue
Block a user