diff options
author | Colin Fleming <cj_fleming@sky.com> | 2013-01-14 13:27:36 +0000 |
---|---|---|
committer | Colin Fleming <cj_fleming@sky.com> | 2013-01-14 13:27:36 +0000 |
commit | a3381369d9858b92e3282f5d20ff94b62349b93a (patch) | |
tree | 021d4f761db4cdaed63a7dff1d70e1d1c7cc10c4 /usr/local/www/diag_traceroute.php | |
parent | 11d1d64e81484f3175780e841f72fe845d7205f3 (diff) | |
download | pfsense-a3381369d9858b92e3282f5d20ff94b62349b93a.zip pfsense-a3381369d9858b92e3282f5d20ff94b62349b93a.tar.gz |
Update PHP shorthand tag
Standardise all PHP start tags from "<?" to "<?PHP"
Diffstat (limited to 'usr/local/www/diag_traceroute.php')
-rwxr-xr-x | usr/local/www/diag_traceroute.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/diag_traceroute.php b/usr/local/www/diag_traceroute.php index dc44f6b..4b01d8a 100755 --- a/usr/local/www/diag_traceroute.php +++ b/usr/local/www/diag_traceroute.php @@ -47,7 +47,7 @@ include("head.inc"); ?> <body link="#000000" vlink="#000000" alink="#000000"> -<? include("fbegin.inc"); ?> +<?php include("fbegin.inc"); ?> <?php define('MAX_TTL', 64); @@ -115,7 +115,7 @@ if (!isset($do_traceroute)) { <tr> <td valign="top" colspan="2"> <p><span class="vexpl"><span class="red"><b><?=gettext("Note: ");?></b></span><?=gettext("Traceroute may take a while to complete. You may hit the Stop button on your browser at any time to see the progress of failed traceroutes.");?></span><p> - <? if ($do_traceroute) { + <?php if ($do_traceroute) { echo "<font face='terminal' size='2'>"; echo("<br><strong>" . gettext("Traceroute output:") . "</strong><br>"); echo('<pre>'); |