CDR: Add window titles.

This commit is contained in:
Nate
2020-01-06 10:56:27 -07:00
parent 6c77a584d8
commit 983ec065b1
5 changed files with 49 additions and 25 deletions

View File

@@ -43,6 +43,7 @@
$text = $language->get();
//send the header
$document['title'] = $text['title-advanced_search'];
require_once "resources/header.php";
//javascript to toggle input/select boxes
@@ -68,9 +69,9 @@
echo "<table width='100%' cellpadding='0' cellspacing='0'>\n";
echo " <tr>\n";
echo " <td width='30%' nowrap='nowrap' valign='top'><b>Advanced Search</b></td>\n";
echo " <td width='30%' nowrap='nowrap' valign='top'><b>".$text['title-advanced_search']."</b></td>\n";
echo " <td width='70%' align='right' valign='top'>";
echo " <input type='button' class='btn' name='' alt='back' onclick=\"window.location='xml_cdr.php'\" value='Back'>";
echo " <input type='button' class='btn' name='' alt='back' onclick=\"window.location='xml_cdr.php'\" value='".$text['button-back']."'>";
echo " <input type='submit' name='submit' class='btn' value='Search'>";
echo " <br /><br />";
echo " </td>\n";