Log Viewer: Add window title.

This commit is contained in:
Nate
2020-01-06 12:07:05 -07:00
parent 83b859fd07
commit c3b24666c4
2 changed files with 22 additions and 21 deletions

View File

@@ -78,13 +78,14 @@
}
//include the header
$document['title'] = $text['title-log_viewer'];
require_once "resources/header.php";
//show the content
echo "<table width='100%' cellpadding='0' cellspacing='0' border='0'>\n";
echo " <tr>\n";
echo " <td align='left' valign='top' width='100%' style='padding-right: 15px;' nowrap>\n";
echo " <b>".$text['label-log_viewer']."</b><br />\n";
echo " <b>".$text['title-log_viewer']."</b><br />\n";
echo " </td>\n";
echo " <td align='right' valign='middle' nowrap>\n";
echo " <form action='log_viewer.php' method='POST'>\n";