Fix log viewer overflow for log content using word wrap

This commit is contained in:
FusionPBX 2024-12-21 11:32:15 -07:00 committed by GitHub
parent 2b22a15bf9
commit eab081e253
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -152,9 +152,9 @@
echo " <div style='clear: both;'></div>\n";
echo "</div>\n";
echo "<table width='100%' cellpadding='0' cellspacing='0' border='0'>\n";
echo "<table width='100%' style='table-layout: fixed;' cellpadding='0' cellspacing='0' border='0'>\n";
echo " <tr>\n";
echo " <td style='background-color: #1c1c1c; padding: 8px; text-align: left;'>";
echo " <td style='background-color: #1c1c1c; padding: 8px; text-align: left; overflow-wrap: break-word;'>";
if (permission_exists('log_view')) {
@ -348,4 +348,4 @@
fclose($file);
}
?>
?>