I noticed something today that I don't think should be in the pages.
I had opened the page, and then viewed source. I found some PHP code, but looks like it was made into a comment.
PHP Code:
<!--
var win = null
function confirm_delete(type, id)
{
if (type=="engine")
{
var del_msg = "Are you sure you want to delete this engine? This operation is not undo-able!";
}
if (type=="timeslips")
{
var del_msg = "Are you sure you want to delete this timeslip? This operation is not undo-able!";
}
if (type=="guestbook")
{
var del_msg = "Are you sure you want to delete this comment? This operation is not undo-able!";
}
if (type=="vehicle")
{
var del_msg = "Are you sure you want to delete this Vehicle? This operation is not undo-able!";
}
input_box=confirm(del_msg);
if (input_box==true)
{
if (type=="engine")
{
window.location.href = "http://www.caraudiocentral.net/forums/garage_approval.php?do=delete_engine&id=" + id;
} else if (type=="club_mem") {
window.location.href = "http://www.caraudiocentral.net/forums/garage_club.php?do=delete_club_mem&id=" + id;
} else if (type=="wishlist") {
window.location.href = "http://www.caraudiocentral.net/forums/garage_modification.php?do=delete_wishlist&id=" + id;
} else {
window.location.href = "http://www.caraudiocentral.net/forums/garage_" + type + ".php?do=delete_" + type + "&id=" + id;
}
}
}
function delete_image()
{
var msg = "Are you sure you want to delete this image?\nClick OK to continue or Cancel to not delete the image.";
input_box=confirm(msg);
if (input_box==true)
{
return true;
} else {
return false;
}
}
function delete_veh_images(subdo)
{
if (subdo=="del")
{
var msg = "Are you sure you want to delete these images?\nClick OK to continue or Cancel to not delete the images.";
input_box=confirm(msg);
if (input_box==true)
{
return true;
} else {
return false;
}
}
}
You can see it on this page if you want to verify.
http://www.caraudiocentral.net/forum...AMARO-Z28.html
that should be removed right?