Update contact_times.php
This commit is contained in:
parent
0f551f6954
commit
949c05a082
|
|
@ -38,14 +38,6 @@
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
//show the content
|
|
||||||
echo "<table width='100%' border='0'>\n";
|
|
||||||
echo "<tr>\n";
|
|
||||||
echo "<td width='50%' align='left' nowrap='nowrap'><b>".$text['header_contact_times']."</b></td>\n";
|
|
||||||
echo "<td width='50%' align='right'> </td>\n";
|
|
||||||
echo "</tr>\n";
|
|
||||||
echo "</table>\n";
|
|
||||||
|
|
||||||
//get the contact list
|
//get the contact list
|
||||||
$sql = "select ct.*, u.username, u.domain_uuid as user_domain_uuid ";
|
$sql = "select ct.*, u.username, u.domain_uuid as user_domain_uuid ";
|
||||||
$sql .= "from v_contact_times as ct, v_users as u ";
|
$sql .= "from v_contact_times as ct, v_users as u ";
|
||||||
|
|
@ -59,10 +51,19 @@
|
||||||
$result_count = count($result);
|
$result_count = count($result);
|
||||||
unset ($prep_statement, $sql);
|
unset ($prep_statement, $sql);
|
||||||
|
|
||||||
|
//set the row style
|
||||||
$c = 0;
|
$c = 0;
|
||||||
$row_style["0"] = "row_style0";
|
$row_style["0"] = "row_style0";
|
||||||
$row_style["1"] = "row_style1";
|
$row_style["1"] = "row_style1";
|
||||||
|
|
||||||
|
//show the content
|
||||||
|
echo "<table width='100%' border='0'>\n";
|
||||||
|
echo "<tr>\n";
|
||||||
|
echo "<td width='50%' align='left' nowrap='nowrap'><b>".$text['header_contact_times']."</b></td>\n";
|
||||||
|
echo "<td width='50%' align='right'> </td>\n";
|
||||||
|
echo "</tr>\n";
|
||||||
|
echo "</table>\n";
|
||||||
|
|
||||||
echo "<table class='tr_hover' width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
|
echo "<table class='tr_hover' width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
|
||||||
echo "<tr>\n";
|
echo "<tr>\n";
|
||||||
echo "<th id='th_filler' style='display: none; padding: 0px;'>".img_spacer('21px', '1px')."</th>\n";
|
echo "<th id='th_filler' style='display: none; padding: 0px;'>".img_spacer('21px', '1px')."</th>\n";
|
||||||
|
|
@ -103,7 +104,7 @@
|
||||||
echo " <td class='list_control_icons' nowrap>";
|
echo " <td class='list_control_icons' nowrap>";
|
||||||
if (permission_exists('contact_time_edit')) {
|
if (permission_exists('contact_time_edit')) {
|
||||||
if ($row['user_uuid'] == $_SESSION["user"]["user_uuid"]) {
|
if ($row['user_uuid'] == $_SESSION["user"]["user_uuid"]) {
|
||||||
echo "<a href='contact_time_edit.php?contact_uuid=".$row['contact_uuid']."&id=".$row['contact_time_uuid']."' alt='".$text['button-edit']."'>".$v_link_label_edit."</a>";
|
echo "<a href='contact_time_edit.php?contact_uuid=".escape($row['contact_uuid'])."&id=".escape($row['contact_time_uuid'])."' alt='".$text['button-edit']."'>".$v_link_label_edit."</a>";
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
echo "<span onclick=\"alert('".$text['message-access_denied']."');\" alt='".$text['button-edit']."'>".str_replace("list_control_icon", "list_control_icon_disabled", $v_link_label_edit)."</span>";
|
echo "<span onclick=\"alert('".$text['message-access_denied']."');\" alt='".$text['button-edit']."'>".str_replace("list_control_icon", "list_control_icon_disabled", $v_link_label_edit)."</span>";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue