diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-01-08 02:49:25 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-01-08 02:49:25 +0100 |
commit | 75f7c12815c62782163a54e84707f50459b6ef5d (patch) | |
tree | 8f0440ebde2bd0aa5a5beaa2a14f53652bf3f704 /system/core/Loader.php | |
parent | d72973519623f40f121e9cd2df93146ee2543a1f (diff) |
Remove loading of ['core'] elements
Diffstat (limited to 'system/core/Loader.php')
-rw-r--r-- | system/core/Loader.php | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/system/core/Loader.php b/system/core/Loader.php index 689ae1ecd..272fe4291 100644 --- a/system/core/Loader.php +++ b/system/core/Loader.php @@ -1165,13 +1165,6 @@ class CI_Loader { } } - // A little tweak to remain backward compatible - // The $autoload['core'] item was deprecated - if ( ! isset($autoload['libraries']) AND isset($autoload['core'])) - { - $autoload['libraries'] = $autoload['core']; - } - // Load libraries if (isset($autoload['libraries']) AND count($autoload['libraries']) > 0) { |