Operation canceled!
\n";
PAGEFOOTER();
return;
}
if (!$confirmed) {
PAGEHEADER("Free Node");
echo "
Are you REALLY
sure you want to free node '$node_id?'
\n";
SHOWNODE($node_id);
echo "\n";
echo "\n";
PAGEFOOTER();
return;
}
#
# Pass it off to the script.
#
SUEXEC($uid, "nobody", "webnfree $pid $eid $node_id", 1);
#
# And send an audit message.
#
TBUserInfo($uid, $uid_name, $uid_email);
TBMAIL($TBMAIL_AUDIT,
"Node Free: $node_id",
"$node_id was deallocated via the web interface by $uid ($uid_name).\n",
"From: $uid_name <$uid_email>\n".
"Errors-To: $TBMAIL_WWW");
#
# Spit out a redirect so that the history does not include a post
# in it. The back button skips over the post and to the form.
# See above for conclusion.
#
header("Location: shownode.php3?node_id=$node_id");
?>