mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-09-02 03:08:53 +00:00
Fix links() error on rest of the cover related pages
This commit is contained in:
@@ -86,7 +86,12 @@ class AdultController extends BasePageController
|
||||
$this->smarty->assign('orderby'.$ordertype, WWW_TOP.'/xxx?t='.$category.$browseby_link.'&ob='.$ordertype.'&offset=0');
|
||||
}
|
||||
|
||||
$this->smarty->assign('results', $movies);
|
||||
$this->smarty->assign(
|
||||
[
|
||||
'resultsadd'=> $movies,
|
||||
'results' => $results,
|
||||
]
|
||||
);
|
||||
|
||||
$meta_title = 'Browse XXX';
|
||||
$meta_keywords = 'browse,xxx,nzb,description,details';
|
||||
|
||||
@@ -86,7 +86,12 @@ class BooksController extends BasePageController
|
||||
$this->smarty->assign('orderby'.$ordertype, WWW_TOP.'/books?t='.$category.$browseby_link.'&ob='.$ordertype.'&offset=0');
|
||||
}
|
||||
|
||||
$this->smarty->assign('results', $books);
|
||||
$this->smarty->assign(
|
||||
[
|
||||
'resultsadd'=> $books,
|
||||
'results' => $results,
|
||||
]
|
||||
);
|
||||
|
||||
$meta_title = 'Browse Books';
|
||||
$meta_keywords = 'browse,nzb,books,description,details';
|
||||
|
||||
@@ -89,7 +89,12 @@ class ConsoleController extends BasePageController
|
||||
}
|
||||
}
|
||||
|
||||
$this->smarty->assign('results', $consoles);
|
||||
$this->smarty->assign(
|
||||
[
|
||||
'resultsadd'=> $consoles,
|
||||
'results' => $results,
|
||||
]
|
||||
);
|
||||
|
||||
$meta_title = 'Browse Console';
|
||||
$meta_keywords = 'browse,nzb,console,games,description,details';
|
||||
|
||||
@@ -90,7 +90,12 @@ class MusicController extends BasePageController
|
||||
}
|
||||
}
|
||||
|
||||
$this->smarty->assign('results', $musics);
|
||||
$this->smarty->assign(
|
||||
[
|
||||
'resultsadd'=> $musics,
|
||||
'results' => $results,
|
||||
]
|
||||
);
|
||||
|
||||
$meta_title = 'Browse Albums';
|
||||
$meta_keywords = 'browse,nzb,albums,description,details';
|
||||
|
||||
Reference in New Issue
Block a user