<?php
global $wpsc_error_reporting;
if($wpsc_error_reporting==false) {
error_reporting(0);
}
if (!function_exists('add_action'))
{
require_once("../../../../wp-config.php");
}
global $current_user,$wpdb, $wpStoreCart;
$devOptions = $wpStoreCart->getAdminOptions();
wp_get_current_user();
if ( 0 == $current_user->ID ) {
// Not logged in.
} else {
if (function_exists('current_user_can') && !current_user_can('manage_wpstorecart')) {
die(__('Cheatin’ uh?'));
}
$delete = $wpdb->escape($_POST['delete']);
$table_name = $wpdb->prefix . "wpstorecart_meta";
$insert = "DELETE FROM `{$table_name}` WHERE `primkey`={$delete};";
$results = $wpdb->query($insert);
}
?>