diff options
author | Joel Limberg <me@joellimberg.com> | 2012-07-13 19:49:57 +0200 |
---|---|---|
committer | Joel Limberg <me@joellimberg.com> | 2012-07-13 19:49:57 +0200 |
commit | 3cf174bef3dba5e7e30a9524195aac7773e4d444 (patch) | |
tree | 250f7f9b41549e70b32993de3d630e5f1f461d71 /system/core/Loader.php | |
parent | 975504f33550030ef4a92310c23b59f7b25a7b84 (diff) |
Loader::model() - rename foreach ($model AS $single_model) to ($model AS $class). Consistent with ::library() and ::_ci_load_class()
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 93b8f9e29..bfcef1cbc 100644 --- a/system/core/Loader.php +++ b/system/core/Loader.php @@ -237,9 +237,9 @@ class CI_Loader { { if (is_array($model)) { - foreach ($model as $single_model) + foreach ($model as $class) { - $this->model($single_model); + $this->model($class); } return; } |