summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/exec.php
diff options
context:
space:
mode:
authork-paulius <k.dash.paulius@gmail.com>2016-02-10 22:33:56 -0600
committerk-paulius <k.dash.paulius@gmail.com>2016-02-10 22:33:56 -0600
commit3d7a8696f69a81b4400928c3359bd8f156d3e8a9 (patch)
tree77af38cde3116a860ceaee60fde8b5fda432f0c7 /src/usr/local/www/exec.php
parentec1c8e5aae1bd8c0612ac1381319eb318b7a0ee5 (diff)
downloadpfsense-3d7a8696f69a81b4400928c3359bd8f156d3e8a9.zip
pfsense-3d7a8696f69a81b4400928c3359bd8f156d3e8a9.tar.gz
Convert section titles to title case
Diffstat (limited to 'src/usr/local/www/exec.php')
-rw-r--r--src/usr/local/www/exec.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/usr/local/www/exec.php b/src/usr/local/www/exec.php
index 618eb23..39d5a33 100644
--- a/src/usr/local/www/exec.php
+++ b/src/usr/local/www/exec.php
@@ -257,7 +257,7 @@ if (!isBlank($_POST['txtCommand'])):?>
</div>
<div class="panel panel-default">
- <div class="panel-heading"><h2 class="panel-title"><?=gettext('Download file')?></h2></div>
+ <div class="panel-heading"><h2 class="panel-title"><?=gettext('Download File')?></h2></div>
<div class="panel-body">
<div class="content">
<input name="dlPath" type="text" id="dlPath" placeholder="File to download" class="col-sm-4" value="<?=htmlspecialchars($_GET['dlPath']);?>"/>
@@ -273,7 +273,7 @@ if (!isBlank($_POST['txtCommand'])):?>
}
?>
<div class="panel panel-default">
- <div class="panel-heading"><h2 class="panel-title"><?=gettext('Upload file')?></h2></div>
+ <div class="panel-heading"><h2 class="panel-title"><?=gettext('Upload File')?></h2></div>
<div class="panel-body">
<div class="content">
<input name="ulfile" type="file" class="btn btn-default btn-sm btn-file" id="ulfile" />
@@ -286,7 +286,7 @@ if (!isBlank($_POST['txtCommand'])):?>
// Experimental version. Writes the user's php code to a file and executes it via a new instance of PHP
// This is intended to prevent bad code from breaking the GUI
if (!isBlank($_POST['txtPHPCommand'])) {
- puts("<div class=\"panel panel-success responsive\"><div class=\"panel-heading\"><h2 class=\"panel-title\">PHP response</h2></div>");
+ puts("<div class=\"panel panel-success responsive\"><div class=\"panel-heading\"><h2 class=\"panel-title\">PHP Response</h2></div>");
$tmpname = tempnam("/tmp", "");
$phpfile = fopen($tmpname, "w");
OpenPOWER on IntegriCloud