<?php
// wpStoreCart, (c) 2011 wpStoreCart.com. All rights reserved.
global $wpsc_error_reporting;
if($wpsc_error_reporting==false) {
error_reporting(0);
}
global $wpdb, $wpStoreCart;
if (!function_exists('add_action'))
{
require_once("../../../../../wp-config.php");
}
$devOptions = $wpStoreCart->getAdminOptions();
if(current_user_can('administrator')) {
$devOptions['authorizenetemail'] = $_POST['authorizenetemail'];
$devOptions['authorizenetsecretkey'] = $_POST['authorizenetsecretkey'];
$devOptions['authorizenettestmode'] = 'false';
$devOptions['allowauthorizenet'] = 'true';
update_option('wpStoreCartAdminOptions', $devOptions);
header("HTTP/1.1 301 Moved Permanently");
header ('Location: '.plugins_url().'/wpstorecart/php/wizard/wizard_setup_08.php');
exit();
}
?>