From 3c2f31fecef996031df830767d2161eb819ffceb Mon Sep 17 00:00:00 2001 From: David Anderson Date: Wed, 25 Mar 2015 16:45:36 -0700 Subject: [PATCH] comment tweaks --- html/ops/cancel_workunits.php | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/html/ops/cancel_workunits.php b/html/ops/cancel_workunits.php index 4f5fd8bf49..9790b77369 100644 --- a/html/ops/cancel_workunits.php +++ b/html/ops/cancel_workunits.php @@ -16,9 +16,17 @@ // You should have received a copy of the GNU Lesser General Public License // along with BOINC. If not, see . -// web interface for canceling WUs according to a SQL where clause +// web interface for canceling WUs according to either +// - ID range +// - ID list +// - SQL where clause -// TODO: use get_int() etc. +// This page shows the form, and a "confirm" page. +// The actual cancellation is done cancel_workunits_action.php + +// TODO: +// - use get_int() etc. rather than $_REQUEST +// - use DB interfaces classes, not mysql_query() etc. require_once("../inc/util_ops.inc");