View Single Post
Old 03-06-2005, 06:10 PM  
MidasKing
Senior Member
 
Join Date: Nov 2003
Posts: 108
Default BTrial 2.5 bug???

Hi Bounty...

Think I found a small error in BTrial 2.5 (maybe...)

I have two sections in my system...

Every a trial user reach the quota in only one section (0 or 1) was moved to the final group (without reaching the quota in the other section).

Well... I changed two lines in bTrialCore.itcl and, pparently, no more problems...

if { $passed == 0 && $trial_end == "yes" }{

to

if { $passed < "xyz" && $trial_end == "yes" } {

and

} elseif { $passed == 0 } {

to

} elseif { $passed > "xyz - 1" } {

where "xyz" is equal to the number of sections (in my case, 2).

Until the moment, everything seems to be correct.

Somebody had problem similar?


PS.:I don't understand nothing of programming in TCL and can be total wrong...

.
MidasKing is offline   Reply With Quote