diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2008-07-15 22:31:24 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2008-07-15 22:31:24 +0000 |
commit | f422ad73b7d2db663d763417fb36b6bfb29904cf (patch) | |
tree | 6d898454f6ef16b06ca79aa05c963f11cceefc97 | |
parent | edb2662cbbfec2e1ce4ae683ed2868e1f2175f39 (diff) | |
download | pfsense-packages-f422ad73b7d2db663d763417fb36b6bfb29904cf.tar.gz pfsense-packages-f422ad73b7d2db663d763417fb36b6bfb29904cf.tar.bz2 pfsense-packages-f422ad73b7d2db663d763417fb36b6bfb29904cf.zip |
Align totals column.
-rw-r--r-- | packages/spamd_db.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/spamd_db.php b/packages/spamd_db.php index 5acc093f..112fdd71 100644 --- a/packages/spamd_db.php +++ b/packages/spamd_db.php @@ -447,10 +447,10 @@ if (typeof getURL == 'undefined') { <br> <p><font size="-2"><b>Database totals:</b><br><font size="-3"><br> <?php - echo " {$whitelist_items} total items in the whitelist.<br>"; - echo " {$blacklist_items} total items in the blacklist.<br>"; - echo " {$spamdb_grey} total items in the greylist.<br>"; - echo " {$spamdb_items} total items in the SpamDB.<br>"; + echo "{$whitelist_items} total items in the whitelist.<br>"; + echo "{$blacklist_items} total items in the blacklist.<br>"; + echo "{$spamdb_grey} total items in the greylist.<br>"; + echo "{$spamdb_items} total items in the SpamDB.<br>"; ?> <?php include("fend.inc"); ?> </body> |