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 suggest to modify query on row 121 of models/LanguageTranslate.php Language
from return static::find()->where('id = :id AND language != :language', [':id' => $this->id, 'language' => $this->language])->all();
to return static::find()->where(['id'=> $this->id])->andWhere(['!=', 'language', $this->language])->all();
this help with db ORACLE that has problem with case sensitive field names.
The text was updated successfully, but these errors were encountered:
I suggest to modify query on row 121 of models/LanguageTranslate.php Language
from
return static::find()->where('id = :id AND language != :language', [':id' => $this->id, 'language' => $this->language])->all();
to
return static::find()->where(['id'=> $this->id])->andWhere(['!=', 'language', $this->language])->all();
this help with db ORACLE that has problem with case sensitive field names.
The text was updated successfully, but these errors were encountered: