| 1084 |
} |
} |
| 1085 |
else // if (page_id >= p_section->page_count - 1) |
else // if (page_id >= p_section->page_count - 1) |
| 1086 |
{ |
{ |
| 1087 |
return MAX(0, (p_section->last_page_visible_article_count + p_section->ontop_article_count - |
return MIN(MAX(0, |
| 1088 |
BBS_article_limit_per_page * (page_id - p_section->page_count + 1))); |
(p_section->last_page_visible_article_count + p_section->ontop_article_count - |
| 1089 |
|
BBS_article_limit_per_page * (page_id - p_section->page_count + 1))), |
| 1090 |
|
BBS_article_limit_per_page); |
| 1091 |
} |
} |
| 1092 |
} |
} |
| 1093 |
|
|