From 526f9bd0ff90dc799aff70410e86d57c865c9be3 Mon Sep 17 00:00:00 2001 From: x2000habouzit Date: Sun, 2 Jan 2005 21:03:28 +0000 Subject: [PATCH] fix spool refresh bug. damn cmp operators. I hate them --- include/spool.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spool.inc.php b/include/spool.inc.php index 8fba366..1a0a7ba 100644 --- a/include/spool.inc.php +++ b/include/spool.inc.php @@ -113,7 +113,7 @@ class BananaSpool $this->version = BANANA_SPOOL_VERSION; } - if ($first<$last && $groupinfo[0]) { + if ($first<=$last && $groupinfo[0]) { $do_save = true; $this->_updateSpool($_nntp, "$first-$last"); } -- 2.1.4