diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2008-07-15 18:00:33 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2008-07-15 18:00:33 +0000 |
commit | 9090e16d66ca02ecbd5aadd85b0445b623485e77 (patch) | |
tree | cf10fc34b9c1fccf100877076a4a9c6bddd63b96 | |
parent | 316298e2e8de85a6088842fbf09238a5299931b1 (diff) | |
download | pfsense-packages-9090e16d66ca02ecbd5aadd85b0445b623485e77.tar.gz pfsense-packages-9090e16d66ca02ecbd5aadd85b0445b623485e77.tar.bz2 pfsense-packages-9090e16d66ca02ecbd5aadd85b0445b623485e77.zip |
Fix off by one error
-rw-r--r-- | packages/spamd_db.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/spamd_db.php b/packages/spamd_db.php index 2921bd7e..12c508b0 100644 --- a/packages/spamd_db.php +++ b/packages/spamd_db.php @@ -427,7 +427,7 @@ if (typeof getURL == 'undefined') { } ?> </td></tr></table> <tr><td> - <?php echo "<font face=\"arial\"><p><b>" . ($rows-1) . "</b> rows returned."; ?> + <?php echo "<font face=\"arial\"><p><b>" . $rows . "</b> rows returned."; ?> <p> * NOTE: adding an e-mail address to the spamtrap automatically traps any server trying to send e-mail to this address. </td></tr> |