Fix reply count logic

This commit is contained in:
Trevor Slocum 2013-04-15 20:01:12 -07:00
parent 4074a288ff
commit 0c856c6fb3
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ if (isset($_POST['message']) || isset($_POST['file'])) {
rebuildThread($post['parent']);
if (strtolower($post['email']) != 'sage') {
if (TINYIB_MAXREPLIES == 0 || numRepliesToThreadByID($id) > TINYIB_MAXREPLIES) {
if (TINYIB_MAXREPLIES == 0 || numRepliesToThreadByID($id) < TINYIB_MAXREPLIES) {
bumpThreadByID($post['parent']);
}
}