Fix sql bug in vote_monitor

svn path=/trunk/boinc/; revision=13949
This commit is contained in:
Eric J. Korpela 2007-10-24 20:14:20 +00:00
parent 625b129abc
commit fea4674524
1 changed files with 4 additions and 4 deletions

View File

@ -44,7 +44,7 @@ if test $sec_from_hour -lt 300 ; then
elif `test $ayes -gt $major` ; then
echo Vote succeeded. >> $msgfile
mail -s "Vote succeeded. You have been banished" $EMAIL < $msgfile2
start_time=`$MYSQL --execute="select start_time from banishment_votes where voteid=$voteid"`
start_time=`$MYSQL --execute="select start_time from banishment_vote where id=$voteid"`
$MYSQL --execute="update forum_preferences set banished_until=$start_time +1209600 where userid= $userid"
$MYSQL --execute="update banishment_vote set end_time=start_time where id=$voteid"
else
@ -79,7 +79,7 @@ if test -n "$voteids" ; then
if test $ayes -gt $nays ; then
echo Vote succeeded. >> $msgfile
mail -s "Vote succeeded. You have been banished" $EMAIL < $msgfile2
start_time=`$MYSQL --execute="select start_time from banishment_votes where voteid=$voteid"`
start_time=`$MYSQL --execute="select start_time from banishment_vote where id=$voteid"`
$MYSQL --execute="update forum_preferences set banished_until=$start_time +1209600 where userid= $userid"
$MYSQL --execute="update banishment_vote set end_time=start_time where id=$voteid"
else