This commit is contained in:
make
2025-04-27 20:29:10 +08:00
parent 989e7d6bb8
commit 785bb3a0c3
3 changed files with 5 additions and 6 deletions

View File

@@ -217,14 +217,14 @@ EOD;
/**
* 小说章节URL生成器
*
* @param array $n_id
* @param array
* @return string
*/
public function tagCPUrl($tag)
{
$intNId = isset($tag['n_id']) ? $tag['n_id'] : '';
$strNPy = isset($tag['n_py']) ? $tag['n_py'] : '';
$intChapterSort = isset($tag['c_sort']) ? $tag['c_sort'] : '';
$intNId = $tag['n_id'];
$strNPy = $tag['n_py'];
$intChapterSort = $tag['c_sort'];
$intChapterPage = isset($tag['c_page']) ? $tag['c_page'] : 0;
$intNId = $this->customBuildVar($intNId);