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
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
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.
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.
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