diff options
author | jim-p <jimp@pfsense.org> | 2012-12-19 09:01:05 -0500 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2012-12-19 09:01:05 -0500 |
commit | 15fc311fc4236bdcf618e93a74bd606e293a2e01 (patch) | |
tree | b2e416dbf3a44b3c5ba04a006de7b0674f68fdda | |
parent | d13e23ec0d22ecdea862d5fcbde360c601277560 (diff) | |
download | pfsense-15fc311fc4236bdcf618e93a74bd606e293a2e01.zip pfsense-15fc311fc4236bdcf618e93a74bd606e293a2e01.tar.gz |
Fix stray DOS carriage return.
-rw-r--r-- | usr/local/www/diag_tables.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/diag_tables.php b/usr/local/www/diag_tables.php index af8e01c..b256766 100644 --- a/usr/local/www/diag_tables.php +++ b/usr/local/www/diag_tables.php @@ -160,7 +160,7 @@ include("fbegin.inc"); if( ($tablename == "bogons") || ($tablename == "bogonsv6") ) { $last_updated = exec('/usr/bin/grep -i -m 1 -E "^# last updated" /etc/' . escapeshellarg($tablename)); echo "<p/> <b>$count</b> " . gettext("entries in this table.") . "  " . "<input name='Download' type='submit' class='formbtn' value='" . gettext("Download") . "'> " . gettext(" the latest bogon data.") . "<br>" . "$last_updated"; - }
+ } else echo "<p/>" . gettext("Delete") . " <a href='diag_tables.php?deleteall=true&type=" . htmlspecialchars($tablename) . "'>" . gettext("all") . "</a> " . "<b>$count</b> " . gettext("entries in this table."); ?> |