We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If the user's lang differs from the default lang, there is a bug when saving a computed field value in the database table.
First the value is loaded and stored in cache in fr lang (user's lang)
equal/lib/equal/orm/ObjectManager.class.php
Line 591 in 8f5443c
Then the orm try to store the cached value in en lang (default lang)
Line 865 in 8f5443c
The value stored is NULL because no value is found for en
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If the user's lang differs from the default lang, there is a bug when saving a computed field value in the database table.
First the value is loaded and stored in cache in fr lang (user's lang)
equal/lib/equal/orm/ObjectManager.class.php
Line 591 in 8f5443c
Then the orm try to store the cached value in en lang (default lang)
equal/lib/equal/orm/ObjectManager.class.php
Line 865 in 8f5443c
The value stored is NULL because no value is found for en
The text was updated successfully, but these errors were encountered: