debug
This commit is contained in:
@@ -219,6 +219,7 @@ class ChapterService
|
|||||||
*/
|
*/
|
||||||
public function getChapterInfo(int $intNId, int $intCSortNum = 0, int $intCPage = 0)
|
public function getChapterInfo(int $intNId, int $intCSortNum = 0, int $intCPage = 0)
|
||||||
{
|
{
|
||||||
|
|
||||||
// 小说详情
|
// 小说详情
|
||||||
$arrNovel = $this->NovelModel->getNovelByNId($intNId);
|
$arrNovel = $this->NovelModel->getNovelByNId($intNId);
|
||||||
|
|
||||||
|
|||||||
@@ -167,8 +167,8 @@ EOT;
|
|||||||
public function tagInfo($tag)
|
public function tagInfo($tag)
|
||||||
{
|
{
|
||||||
$n_id = $tag['n_id'] ?? '0';
|
$n_id = $tag['n_id'] ?? '0';
|
||||||
$c_sort_num = !isset($tag['c_sort_num']) ? $tag['c_sort_num'] : 0;
|
$c_sort_num = isset($tag['c_sort_num']) ? $tag['c_sort_num'] : 0;
|
||||||
$c_page = !isset($tag['c_page']) ? $tag['c_page'] : 0;
|
$c_page = isset($tag['c_page']) ? $tag['c_page'] : 0;
|
||||||
$c_key = $tag['c_key'] ?? 'arrChapter';
|
$c_key = $tag['c_key'] ?? 'arrChapter';
|
||||||
|
|
||||||
$n_id = $this->customBuildVar($n_id);
|
$n_id = $this->customBuildVar($n_id);
|
||||||
|
|||||||
Reference in New Issue
Block a user