Remove the v_ inside php code in preparation to rename the php files.

This commit is contained in:
Mark Crane
2012-07-27 15:22:11 +00:00
parent c3d2423dbc
commit 0ea5f9e1ee
5 changed files with 60 additions and 60 deletions
+4 -7
View File
@@ -53,16 +53,14 @@ else {
}
//delete the fax entry
$sql = "";
$sql .= "delete from v_fax ";
$sql = "delete from v_fax ";
$sql .= "where domain_uuid = '".$_SESSION['domain_uuid']."' ";
$sql .= "and fax_uuid = '$fax_uuid' ";
$db->query($sql);
unset($sql);
//delete the dialplan entry
$sql = "";
$sql .= "delete from v_dialplans ";
$sql = "delete from v_dialplans ";
$sql .= "where domain_uuid = '".$_SESSION['domain_uuid']."' ";
$sql .= "and dialplan_uuid = '$dialplan_uuid' ";
//echo $sql."<br>\n";
@@ -70,8 +68,7 @@ else {
unset($sql);
//delete the dialplan details
$sql = "";
$sql .= "delete from v_dialplan_details ";
$sql = "delete from v_dialplan_details ";
$sql .= "where domain_uuid = '".$_SESSION['domain_uuid']."' ";
$sql .= "and dialplan_uuid = '$dialplan_uuid' ";
//echo $sql."<br>\n";
@@ -87,7 +84,7 @@ else {
//redirect the user
require_once "includes/header.php";
echo "<meta http-equiv=\"refresh\" content=\"2;url=v_fax.php\">\n";
echo "<meta http-equiv=\"refresh\" content=\"2;url=fax.php\">\n";
echo "<div align='center'>\n";
echo "Delete Complete\n";
echo "</div>\n";