diff options
author | Stephen Beaver <sbeaver@netgate.com> | 2016-01-14 12:46:00 -0500 |
---|---|---|
committer | Stephen Beaver <sbeaver@netgate.com> | 2016-01-14 12:46:00 -0500 |
commit | 3ee0eea1650d0ee8c17ceda54b531a70f714b954 (patch) | |
tree | 7b25f18abc7c2b9840e1deb773b78c1014424527 /src/usr/local/www/exec.php | |
parent | 716d553f3ffb89a31358992a6ed2fcf369fb7781 (diff) | |
parent | 95fa5cceea7238ed61e60bd3c172f5b32e03d9b7 (diff) | |
download | pfsense-3ee0eea1650d0ee8c17ceda54b531a70f714b954.zip pfsense-3ee0eea1650d0ee8c17ceda54b531a70f714b954.tar.gz |
Merge pull request #2440 from phil-davis/panel-heading
Diffstat (limited to 'src/usr/local/www/exec.php')
-rw-r--r-- | src/usr/local/www/exec.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usr/local/www/exec.php b/src/usr/local/www/exec.php index f4bbd7f..b7ebca0 100644 --- a/src/usr/local/www/exec.php +++ b/src/usr/local/www/exec.php @@ -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\">PHP response</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"); |