summaryrefslogtreecommitdiffstats
path: root/usr
diff options
context:
space:
mode:
authorVinicius Coque <vinicius.coque@bluepex.com>2010-06-29 20:38:11 -0300
committerVinicius Coque <vinicius.coque@bluepex.com>2010-06-29 20:38:11 -0300
commit6475ac056d7de9881d2e786a09e2e1fb7129b2ec (patch)
tree94c665028d91912d314fcd7f59da3246e2e971d0 /usr
parent68bfa0d700663a1f2fdae838889c3ba17f68fc13 (diff)
downloadpfsense-6475ac056d7de9881d2e786a09e2e1fb7129b2ec.zip
pfsense-6475ac056d7de9881d2e786a09e2e1fb7129b2ec.tar.gz
Fixing syntax errors
Diffstat (limited to 'usr')
-rw-r--r--usr/local/www/diag_showbogons.php2
-rwxr-xr-xusr/local/www/diag_traceroute.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/diag_showbogons.php b/usr/local/www/diag_showbogons.php
index ed93403..4c2464e 100644
--- a/usr/local/www/diag_showbogons.php
+++ b/usr/local/www/diag_showbogons.php
@@ -59,7 +59,7 @@ if($_POST['Download']) {
}
$bogons = file_get_contents(trim("/etc/bogons"));
-$pgtitle = array(gettext("Diagnostics:")gettext("Show Bogons"));
+$pgtitle = array(gettext("Diagnostics:"),gettext("Show Bogons"));
include("head.inc");
?>
diff --git a/usr/local/www/diag_traceroute.php b/usr/local/www/diag_traceroute.php
index 75ffadf..8012ae3 100755
--- a/usr/local/www/diag_traceroute.php
+++ b/usr/local/www/diag_traceroute.php
@@ -63,7 +63,7 @@ if ($_POST || $_REQUEST['host']) {
do_input_validation($_REQUEST, $reqdfields, $reqdfieldsn, &$input_errors);
if (($_REQUEST['ttl'] < 1) || ($_REQUEST['ttl'] > MAX_TTL)) {
- $input_errors[] = sprintf(gettext("Maximum number of hops must be between 1 and '%s'", MAX_TLL);
+ $input_errors[] = sprintf(gettext("Maximum number of hops must be between 1 and '%s'"), MAX_TLL);
}
if (!$input_errors) {
OpenPOWER on IntegriCloud