You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a problem with the "list" view:
The query SELECT "language", COUNT(*) AS "cnt" FROM "language_translate" WHERE translation IS NOT NULL GROUP BY "language"
give me an error because the column translation is not quoted.
The problem is in models/Language.php, the line ->andWhere('translation IS NOT NULL')
should be ->andWhere(['not', ['translation'=>null]])
Could you fix this?
The text was updated successfully, but these errors were encountered:
I have a problem with the "list" view:
The query
SELECT "language", COUNT(*) AS "cnt" FROM "language_translate" WHERE translation IS NOT NULL GROUP BY "language"
give me an error because the column translation is not quoted.
The problem is in models/Language.php, the line
->andWhere('translation IS NOT NULL')
should be
->andWhere(['not', ['translation'=>null]])
Could you fix this?
The text was updated successfully, but these errors were encountered: