Fix bug in cancel WU script

svn path=/trunk/boinc/; revision=8653
This commit is contained in:
Bruce Allen 2005-10-11 19:27:37 +00:00
parent 6bc2fa7f48
commit ce6426026c
2 changed files with 10 additions and 2 deletions

View File

@ -13016,3 +13016,11 @@ Rom 11 Oct 2005 (HEAD, staging, stable, boinc_core_release)
locale/client/en_US/
BOINC Manager.po, .mo
Bruce 11 Oct 2005
- Fix bug in cancel WU script
html/
ops/
cancel_wu_action.php

View File

@ -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;