#!/usr/bin/php-cgi -q
<?php

require_once(dirname(__FILE__).'/../lib/controller/rad/class.RADchangeCredit.inc.php');

$obj = new RADchangeCredit();
if (is_object($obj)) {
    if ( $obj->change(65, 10, 1)) {
    } else {
	echo('Error! Can not change credit!');
	exit(1);
    }
} else {
    echo('Error! Can not instantiate class!');
    exit(1);
}

exit(0);
?>