From ce6426026c09111715b2389f9cf26686e95cd778 Mon Sep 17 00:00:00 2001 From: Bruce Allen Date: Tue, 11 Oct 2005 19:27:37 +0000 Subject: [PATCH] Fix bug in cancel WU script svn path=/trunk/boinc/; revision=8653 --- checkin_notes | 10 +++++++++- html/ops/cancel_wu_action.php | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/checkin_notes b/checkin_notes index ed715df814..407bbbf91f 100755 --- a/checkin_notes +++ b/checkin_notes @@ -13015,4 +13015,12 @@ Rom 11 Oct 2005 (HEAD, staging, stable, boinc_core_release) hyperlink.cpp locale/client/en_US/ BOINC Manager.po, .mo - \ No newline at end of file + +Bruce 11 Oct 2005 + - Fix bug in cancel WU script + + html/ + ops/ + cancel_wu_action.php + + diff --git a/html/ops/cancel_wu_action.php b/html/ops/cancel_wu_action.php index a37cd40d41..fe3593d59a 100644 --- a/html/ops/cancel_wu_action.php +++ b/html/ops/cancel_wu_action.php @@ -29,7 +29,7 @@ function cancel_wu($wuid1, $wuid2) { // trigger the transitioner (it will set file_delete_state) $now = time(); - $query = ="update workunit set transition_time=$now where $wuid1<=id and id<=$wuid2"; + $query="update workunit set transition_time=$now where $wuid1<=id and id<=$wuid2"; mysql_query($query); return 0;