mirror of https://github.com/BOINC/boinc.git
Fix bug in cancel WU script
svn path=/trunk/boinc/; revision=8653
This commit is contained in:
parent
6bc2fa7f48
commit
ce6426026c
|
@ -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
|
||||
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue