diff options
author | Andrey Andreev <narf@bofh.bg> | 2013-01-12 03:19:19 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2013-01-12 03:19:19 +0100 |
commit | 5a519db2c4884a3972dd33e09d0b3a314aa222e2 (patch) | |
tree | e693c7dfcfb0201df17a5c0df4161253bb2ad07d /system/core/Loader.php | |
parent | 78fa58a66f4e0d31043f0d3d8a64088fb8900361 (diff) |
Implement autoload model aliasing (#2117)
Diffstat (limited to 'system/core/Loader.php')
-rw-r--r-- | system/core/Loader.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/core/Loader.php b/system/core/Loader.php index 9bfddc15a..4d95d6288 100644 --- a/system/core/Loader.php +++ b/system/core/Loader.php @@ -233,9 +233,9 @@ class CI_Loader { } elseif (is_array($model)) { - foreach ($model as $class) + foreach ($model as $key => $value) { - $this->model($class); + $this->model(is_int($key) ? $value : $key, $value); } return; } |