Remove v_ from the links in the php files.

This commit is contained in:
Mark Crane
2012-11-24 01:05:27 +00:00
parent 9004d00ecc
commit 9d0f3b0e6f
3 changed files with 13 additions and 15 deletions

View File

@@ -39,8 +39,7 @@ if (count($_GET)>0) {
}
if (strlen($id)>0) {
$sql = "";
$sql .= "delete from v_modules ";
$sql = "delete from v_modules ";
$sql .= "where module_uuid = '$id' ";
$prep_statement = $db->prepare(check_sql($sql));
$prep_statement->execute();
@@ -48,7 +47,7 @@ if (strlen($id)>0) {
}
require_once "includes/header.php";
echo "<meta http-equiv=\"refresh\" content=\"2;url=v_modules.php\">\n";
echo "<meta http-equiv=\"refresh\" content=\"2;url=modules.php\">\n";
echo "<div align='center'>\n";
echo "Delete Complete\n";
echo "</div>\n";