diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2010-11-21 17:27:35 -0500 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2010-11-21 17:27:35 -0500 |
commit | 3fb41d4d7b6718af3d1d6856b26547b65b30fdf6 (patch) | |
tree | d7f88b197d00b71a8c60be91c5ffa4e10b67455c /config/unbound/unbound_status.php | |
parent | e1da9264888c4e9b24894663adde061fec026596 (diff) | |
download | pfsense-packages-3fb41d4d7b6718af3d1d6856b26547b65b30fdf6.tar.gz pfsense-packages-3fb41d4d7b6718af3d1d6856b26547b65b30fdf6.tar.bz2 pfsense-packages-3fb41d4d7b6718af3d1d6856b26547b65b30fdf6.zip |
Use textareas to hold data
Diffstat (limited to 'config/unbound/unbound_status.php')
-rw-r--r-- | config/unbound/unbound_status.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/unbound/unbound_status.php b/config/unbound/unbound_status.php index c6980a4b..85b78035 100644 --- a/config/unbound/unbound_status.php +++ b/config/unbound/unbound_status.php @@ -43,7 +43,7 @@ function doCmdT($title, $command) { echo "<a name=\"" . $title . "\">\n"; echo "<table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n"; echo "<tr><td class=\"listtopic\">" . $title . "</td></tr>\n"; - echo "<tr><td class=\"listlr\"><pre>"; /* no newline after pre */ + echo "<tr><td class=\"listlr\"><textarea cols=\"101\" rows=\"20\">"; /* no newline after pre */ if ($command == "dumpconfigxml") { $fd = @fopen("/conf/config.xml", "r"); @@ -70,7 +70,7 @@ function doCmdT($title, $command) { echo htmlspecialchars($execOutput[$i],ENT_NOQUOTES); } } - echo "</pre></tr>\n"; + echo "</textarea></tr>\n"; echo "</table>\n"; } |