Remove committee auth check and replace with commandline only check -- This allows the judges scheduler to actually run again!

This commit is contained in:
james 2007-12-17 21:37:22 +00:00
parent b366d7bf4e
commit 1d6c0c9530

View File

@ -28,7 +28,11 @@
require("../projects.inc.php");
require("judges.inc.php");
require("anneal.inc.php");
user_auth_required('committee','admin');
if($_SERVER['SERVER_ADDR']) {
echo "This script must be run from the command line";
exit;
}
/*
send_header("Judging teams automatic scheduler");