From: x2000habouzit Date: Sun, 2 Jan 2005 21:03:28 +0000 (+0000) Subject: fix spool refresh bug. damn cmp operators. I hate them X-Git-Tag: 1.8~341 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=526f9bd0ff90dc799aff70410e86d57c865c9be3;p=banana.git fix spool refresh bug. damn cmp operators. I hate them --- 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"); }