Update call_flows.php
This commit is contained in:
parent
850c39a013
commit
2ca6e499a4
|
|
@ -122,7 +122,7 @@
|
|||
echo " <td width='50%' align='left' nowrap='nowrap'><b>".$text['title-call_flows']."</b></td>\n";
|
||||
echo " <form method='get' action=''>\n";
|
||||
echo " <td width='50%' style='vertical-align: top; text-align: right; white-space: nowrap;'>\n";
|
||||
echo " <input type='text' class='txt' style='width: 150px' name='search' id='search' value='".$search."'>\n";
|
||||
echo " <input type='text' class='txt' style='width: 150px' name='search' id='search' value='".escape($search)."'>\n";
|
||||
echo " <input type='submit' class='btn' name='submit' value='".$text['button-search']."'>\n";
|
||||
echo " </td>\n";
|
||||
echo " </form>\n";
|
||||
|
|
@ -172,35 +172,35 @@
|
|||
echo "<tr ".$tr_link.">\n";
|
||||
echo " <td valign='top' class='".$row_style[$c]."'>";
|
||||
if ($row['call_flow_status'] != "false") {
|
||||
echo $row['call_flow_label'];
|
||||
echo escape($row['call_flow_label']);
|
||||
}
|
||||
else {
|
||||
echo $row['call_flow_alternate_label'];
|
||||
echo escape($row['call_flow_alternate_label']);
|
||||
}
|
||||
echo " \n";
|
||||
echo " </td>\n";
|
||||
//echo " <td valign='top' class='".$row_style[$c]."'>".$row['call_flow_name']." </td>\n";
|
||||
echo " <td valign='top' class='".$row_style[$c]."'>".$row['call_flow_extension']." </td>\n";
|
||||
echo " <td valign='top' class='".$row_style[$c]."'>".$row['call_flow_feature_code']." </td>\n";
|
||||
//echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['call_flow_name'])." </td>\n";
|
||||
echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['call_flow_extension'])." </td>\n";
|
||||
echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['call_flow_feature_code'])." </td>\n";
|
||||
if (permission_exists('call_flow_context')) {
|
||||
echo " <td valign='top' class='row_stylebg'>".$row['call_flow_context']." </td>\n";
|
||||
echo " <td valign='top' class='row_stylebg'>".escape($row['call_flow_context'])." </td>\n";
|
||||
}
|
||||
//echo " <td valign='top' class='".$row_style[$c]."'>".$row['call_flow_pin_number']." </td>\n";
|
||||
//echo " <td valign='top' class='".$row_style[$c]."'>".$row['call_flow_label']." </td>\n";
|
||||
//echo " <td valign='top' class='".$row_style[$c]."'>".$row['call_flow_sound']." </td>\n";
|
||||
//echo " <td valign='top' class='".$row_style[$c]."'>".$row['call_flow_app']." </td>\n";
|
||||
//echo " <td valign='top' class='".$row_style[$c]."'>".$row['call_flow_data']." </td>\n";
|
||||
//echo " <td valign='top' class='".$row_style[$c]."'>".$row['call_flow_alternate_label']." </td>\n";
|
||||
//echo " <td valign='top' class='".$row_style[$c]."'>".$row['call_flow_alternate_sound']." </td>\n";
|
||||
//echo " <td valign='top' class='".$row_style[$c]."'>".$row['call_flow_alternate_app']." </td>\n";
|
||||
//echo " <td valign='top' class='".$row_style[$c]."'>".$row['call_flow_alternate_data']." </td>\n";
|
||||
echo " <td valign='top' class='row_stylebg'>".$row['call_flow_description']." </td>\n";
|
||||
//echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['call_flow_pin_number'])." </td>\n";
|
||||
//echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['call_flow_label'])." </td>\n";
|
||||
//echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['call_flow_sound'])." </td>\n";
|
||||
//echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['call_flow_app'])." </td>\n";
|
||||
//echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['call_flow_data'])." </td>\n";
|
||||
//echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['call_flow_alternate_label'])." </td>\n";
|
||||
//echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['call_flow_alternate_sound'])." </td>\n";
|
||||
//echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['call_flow_alternate_app'])." </td>\n";
|
||||
//echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['call_flow_alternate_data'])." </td>\n";
|
||||
echo " <td valign='top' class='row_stylebg'>".escape($row['call_flow_description'])." </td>\n";
|
||||
echo " <td class='list_control_icons'>";
|
||||
if (permission_exists('call_flow_edit')) {
|
||||
echo "<a href='call_flow_edit.php?id=".$row['call_flow_uuid']."' alt='".$text['button-edit']."'>$v_link_label_edit</a>";
|
||||
echo "<a href='call_flow_edit.php?id=".escape($row['call_flow_uuid'])."' alt='".$text['button-edit']."'>$v_link_label_edit</a>";
|
||||
}
|
||||
if (permission_exists('call_flow_delete')) {
|
||||
echo "<a href='call_flow_delete.php?id=".$row['call_flow_uuid']."' alt='".$text['button-delete']."' onclick=\"return confirm('".$text['confirm-delete']."')\">$v_link_label_delete</a>";
|
||||
echo "<a href='call_flow_delete.php?id=".escape($row['call_flow_uuid'])."' alt='".$text['button-delete']."' onclick=\"return confirm('".$text['confirm-delete']."')\">$v_link_label_delete</a>";
|
||||
}
|
||||
echo " </td>\n";
|
||||
echo "</tr>\n";
|
||||
|
|
|
|||
Loading…
Reference in New Issue