diff options
author | John Wright <wrightlabs@gmail.com> | 2012-01-17 00:09:19 +0100 |
---|---|---|
committer | John Wright <wrightlabs@gmail.com> | 2012-01-17 00:09:19 +0100 |
commit | 2a97c7db940e94a115dea863708f587e58d26be4 (patch) | |
tree | f8c9c03e6dcbabd6cf4747fcd674c0fdc03bedd1 /user_guide_src/source | |
parent | fc514ca3578c59753e059fd6b8a2415424850535 (diff) |
It appears the Security class has been added to the system/core folder and is loaded automatically as well.
Using $this->load->library('security'); in controllers currently returns FALSE, yet you might not notice because the Security class is already loaded.
I discovered this because of a custom Loader class I was using returned an error when loading the Security class.
Diffstat (limited to 'user_guide_src/source')
-rw-r--r-- | user_guide_src/source/general/core_classes.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/user_guide_src/source/general/core_classes.rst b/user_guide_src/source/general/core_classes.rst index ac41407f7..4aa6693f7 100644 --- a/user_guide_src/source/general/core_classes.rst +++ b/user_guide_src/source/general/core_classes.rst @@ -31,6 +31,7 @@ time CodeIgniter runs: - Log - Output - Router +- Security - URI - Utf8 |