aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2008-07-15 18:00:33 +0000
committerScott Ullrich <sullrich@pfsense.org>2008-07-15 18:00:33 +0000
commit9090e16d66ca02ecbd5aadd85b0445b623485e77 (patch)
treecf10fc34b9c1fccf100877076a4a9c6bddd63b96 /packages
parent316298e2e8de85a6088842fbf09238a5299931b1 (diff)
downloadpfsense-packages-9090e16d66ca02ecbd5aadd85b0445b623485e77.tar.gz
pfsense-packages-9090e16d66ca02ecbd5aadd85b0445b623485e77.tar.bz2
pfsense-packages-9090e16d66ca02ecbd5aadd85b0445b623485e77.zip
Fix off by one error
Diffstat (limited to 'packages')
-rw-r--r--packages/spamd_db.php2
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>