mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-24 04:50:31 +08:00
Merge pull request #1171 from mcd-php/fix-relation-strtolower
FIX: Relation names not mangled in ActiveQuery::normalizeRelation
This commit is contained in:
@ -308,13 +308,12 @@ class ActiveQuery extends Query
|
||||
$childName = null;
|
||||
}
|
||||
|
||||
$t = strtolower($name);
|
||||
if (!isset($relations[$t])) {
|
||||
if (!isset($relations[$name])) {
|
||||
$relation = $model->getRelation($name);
|
||||
$relation->primaryModel = null;
|
||||
$relations[$t] = $relation;
|
||||
$relations[$name] = $relation;
|
||||
} else {
|
||||
$relation = $relations[$t];
|
||||
$relation = $relations[$name];
|
||||
}
|
||||
|
||||
if (isset($childName)) {
|
||||
|
Reference in New Issue
Block a user