diff options
author | heper <heper@users.noreply.github.com> | 2015-11-13 08:49:25 +0100 |
---|---|---|
committer | heper <heper@users.noreply.github.com> | 2015-11-13 08:49:25 +0100 |
commit | 247418f17e080221758a792065353032db3a6556 (patch) | |
tree | b822b98e9765f4064726b704b4d24f0155c75d10 /src | |
parent | 6759e0fcbb154503041c44c4a4b05f8b820ed0bd (diff) | |
download | pfsense-247418f17e080221758a792065353032db3a6556.zip pfsense-247418f17e080221758a792065353032db3a6556.tar.gz |
proposed fix Bug #5433
Diffstat (limited to 'src')
-rw-r--r-- | src/usr/local/www/guiconfig.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usr/local/www/guiconfig.inc b/src/usr/local/www/guiconfig.inc index ed66599..8273859 100644 --- a/src/usr/local/www/guiconfig.inc +++ b/src/usr/local/www/guiconfig.inc @@ -701,7 +701,7 @@ function dump_clog($logfile, $tail, $withorig = true, $grepfor = "", $grepinvert $entry_text .= htmlspecialchars($logent[4] . " " . $logent[5]); } echo "<td style=\"white-space:nowrap;\">{$entry_date_time}</td>\n"; - echo "<td>{$entry_text}</td>\n"; + echo "<td style=\"word-wrap:break-word; word-break:break-all; white-space:normal\">{$entry_text}</td>\n"; } else { echo "<td>" . htmlspecialchars($logent[5]) . "</td>\n"; } |