diff --git a/framework/yii/YiiBase.php b/framework/yii/YiiBase.php index 2f2bf61..2834d7e 100644 --- a/framework/yii/YiiBase.php +++ b/framework/yii/YiiBase.php @@ -353,11 +353,10 @@ class YiiBase $path = str_replace('_', '/', $className) . '.php'; } - // try via path alias first + // try loading via path alias if (strpos($path, '/') !== false) { - $fullPath = static::getAlias('@' . $path, false); - if ($fullPath !== false && is_file($fullPath)) { - $classFile = $fullPath; + $classFile = static::getAlias('@' . $path, false); + if ($classFile !== false && is_file($classFile)) { include($classFile); } }