diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2008-07-15 16:40:24 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2008-07-15 16:40:24 +0000 |
commit | b3176423bba39650c5c324d1ddfd2d698f7ccbd7 (patch) | |
tree | 942f67e6d56b45f68bc66cf3a77d9fc29217bd68 /packages | |
parent | ab49cedd898d7dafb93266a8526efdd0abb85230 (diff) | |
download | pfsense-packages-b3176423bba39650c5c324d1ddfd2d698f7ccbd7.tar.gz pfsense-packages-b3176423bba39650c5c324d1ddfd2d698f7ccbd7.tar.bz2 pfsense-packages-b3176423bba39650c5c324d1ddfd2d698f7ccbd7.zip |
If srcip, from address and to address are blank, simply continue
Diffstat (limited to 'packages')
-rw-r--r-- | packages/spamd_db.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/spamd_db.php b/packages/spamd_db.php index ae934a70..9f037327 100644 --- a/packages/spamd_db.php +++ b/packages/spamd_db.php @@ -405,6 +405,8 @@ if (typeof getURL == 'undefined') { $attempts = htmlentities($pkgdb_split[8]); break; } + if($srcip == "" and $fromaddress == "" and $toaddress == "") + continue; echo "<tr id=\"{$rows}\">"; echo "<td class=\"listr\">{$recordtype}</td>"; echo "<td class=\"listr\">{$srcip}</td>"; |