Minor fix to overboard to not display max + 1 articles, just max articles.

This commit is contained in:
Retro_Guy 2024-05-13 04:52:28 -07:00
parent 94c7af9d8d
commit 95b8fc2baf
1 changed files with 1 additions and 1 deletions

View File

@ -540,7 +540,7 @@ function display_flat($threads, $oldest)
}
}
$results ++;
if ($results > $maxdisplay) {
if ($results > ($maxdisplay - 1)) {
break;
}
}