Remove v_ from the links in gateways

This commit is contained in:
Mark Crane
2012-11-24 00:59:49 +00:00
parent 3bb34b9f1d
commit 0ff839f6bb
5 changed files with 17 additions and 20 deletions
+2 -3
View File
@@ -39,8 +39,7 @@ if (strlen($_GET["id"])>0) {
$id = $_GET["id"];
//get the gateway name
$sql = "";
$sql .= "select * from v_gateways ";
$sql = "select * from v_gateways ";
$sql .= "where domain_uuid = '$domain_uuid' ";
$sql .= "and gateway_uuid = '$id' ";
$prep_statement = $db->prepare(check_sql($sql));
@@ -112,7 +111,7 @@ if (strlen($_GET["id"])>0) {
//redirect the users
require_once "includes/header.php";
echo "<meta http-equiv=\"refresh\" content=\"2;url=v_gateways.php\">\n";
echo "<meta http-equiv=\"refresh\" content=\"2;url=gateways.php\">\n";
echo "<div align='center'>\n";
echo "Delete Complete\n";
echo "</div>\n";