| #332 | if($current_index > 0){ |
| #333 | $prev_chapter = $chapter_list[$current_index - 1]; |
| #334 | $prev_chapter_url = isset($prev_chapter['url']) && $prev_chapter['url'] ? $prev_chapter['url'] : $this->cms_content->content_url($prev_chapter, 4); |
| #335 | $this->assign('prev_chapter_url', $prev_chapter_url); |
| #336 | $this->assign('prev_chapter_title', $prev_chapter['title']); |
| #337 | } |
| #338 | if($current_index >= 0 && $current_index < $chapter_count - 1){ |
| #339 | $next_chapter = $chapter_list[$current_index + 1]; |
| #340 | $next_chapter_url = isset($next_chapter['url']) && $next_chapter['url'] ? $next_chapter['url'] : $this->cms_content->content_url($next_chapter, 4); |
| #341 | $this->assign('next_chapter_url', $next_chapter_url); |