diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-11-07 01:36:44 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-11-07 01:36:44 +0000 |
commit | 992ac32fa0a850896ce3d8b3be268e9b2c53bfe2 (patch) | |
tree | a6c824f9a0aaac81e749906866724afd98b2338f /usr/local/www/exec.php | |
parent | 69fbe36f6affaed1e400750f845959e74eba1dc5 (diff) | |
download | pfsense-992ac32fa0a850896ce3d8b3be268e9b2c53bfe2.zip pfsense-992ac32fa0a850896ce3d8b3be268e9b2c53bfe2.tar.gz |
Move value into the textarea tag
Diffstat (limited to 'usr/local/www/exec.php')
-rwxr-xr-x | usr/local/www/exec.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/exec.php b/usr/local/www/exec.php index 2555c95..e711778 100755 --- a/usr/local/www/exec.php +++ b/usr/local/www/exec.php @@ -277,7 +277,7 @@ if (!isBlank($_POST['txtPHPCommand'])) { </tr> <tr> <td align="right">Command:</td> - <td class="type"><textarea id="txtPHPCommand" name="txtPHPCommand" type="text" rows="3" cols="50" value="<?=htmlspecialchars($_POST['txtPHPCommand']);?>"></textarea></td> + <td class="type"><textarea id="txtPHPCommand" name="txtPHPCommand" type="text" rows="3" cols="50"><?=htmlspecialchars($_POST['txtPHPCommand']);?></textarea></td> </tr> <tr> <td valign="top"> </td> |