Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix bug with Globalize::ActiveRecord#attributes #54

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

nickewing
Copy link

The current implementation causes attributes to be fetched from globalize's cache instead of the model's attributes. When a value for an attribute is false, then the cache is checked causing a return of nil instead of false. The end result can cause validation errors when inserting records into the database. This patch first checks to see whether the attribute is set on the model. If it is set, the value is returned, otherwise it returns the value from globalize's attribute cache.

Globalize::ActiveRecord#reload is also patched to play nicely with alias_method_chain from other plugins.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants