History | Log In     View a printable version of the current page.  
Please note that Jira will be offline Saturday July 26, 2008 from 3:00 AM to 6:00 AM EDT (GMT -4) for scheduled maintenance.
Issue Details (XML | Word | Printable)

Key: BCNT-72
Type: Bug Bug
Status: Closed Closed
Resolution: Fixed
Priority: Major Major
Assignee: William (kandoko)
Reporter: William (kandoko)
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
BeanCounter

The DB check would prevent new users from being created due to a bad if DB present check that would error

Created: 01/Dec/07 11:55 AM   Updated: 22/Dec/07 03:03 PM
Component/s: None
Affects Version/s: None
Fix Version/s: None


 All   Comments   Change History   FishEye      Sort Order:
William (kandoko) - 01/Dec/07 11:56 AM
r2612
Changed
if private.version and BeanCounterDB[private.realmName][private.playerName].version and private.version < BeanCounterDB[private.realmName][private.playerName].version then
print ("This database has been updated to work with a newer version of BeanCounter than the one you are currently using. BeanCounter will stop loading now.")
private.CreateErrorFrames()
return
end

to

if private.version and BeanCounterDB and BeanCounterDB[private.realmName][private.playerName].version and private.version < BeanCounterDB[private.realmName][private.playerName].version then
print ("This database has been updated to work with a newer version of BeanCounter than the one you are currently using. BeanCounter will stop loading now.")
private.CreateErrorFrames()
return
end

Nikk (Nechckn) - 22/Dec/07 03:03 PM
Verified in dev/Trunk- If understanding the issue, similar to the issue where the need to notify users if the data would not display due to using an old copy of BC with newer data. Error appears to be resolved in current rev.