This was fixed in trunk. At this point, projects should use trunk instead of server_stable (I've been meaning to promote trunk, but haven't gotten around to it).
-- David On 02-Jul-2011 3:17 PM, Jon Sonntag wrote: > Current line 43: > > $gflops = 1e-9/$hav->et_avg; > > > > If the user hasn't returned a completed result, then there is no et_avg and > the user gets a divide by zero error at the top of the page. > > > > My fix: > > if ($hav->et_avg> 0) > > $gflops = 1e-9/$hav->et_avg; > > else > > $gflops = 0; > > > > > > Jon Sonntag > > _______________________________________________ > boinc_dev mailing list > [email protected] > http://lists.ssl.berkeley.edu/mailman/listinfo/boinc_dev > To unsubscribe, visit the above URL and > (near bottom of page) enter your email address. _______________________________________________ boinc_dev mailing list [email protected] http://lists.ssl.berkeley.edu/mailman/listinfo/boinc_dev To unsubscribe, visit the above URL and (near bottom of page) enter your email address.
