Merge remote-tracking branch 'origin/0.4' into 0.5

This commit is contained in:
Michal Sieciechowicz 2021-03-17 13:44:51 +01:00
commit f7d8f76a79
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ abstract class Model {
}
protected static function QueryModel() {
if (self::$query === null && self::class !== static::class) {
if (true || (self::$query === null && self::class !== static::class)) {
self::$query = static::SetQueryModel();
}
return self::$query;