lajax / yii2-translate-manager

Translation Manager
MIT License
227 stars 89 forks source link

Problem with the "list" view #147

Open ilbassa opened 2 years ago

ilbassa commented 2 years ago

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?