diff options
author | Tomaz Lovrec <tomaz.lovrec@gmail.com> | 2013-10-16 11:29:57 +0200 |
---|---|---|
committer | Tomaz Lovrec <tomaz.lovrec@gmail.com> | 2013-10-16 11:29:57 +0200 |
commit | a81a5effc439306807730002c19d8b4dda3c6f1d (patch) | |
tree | 649a441a003139dd03c595196609ba832b2b6faf /system | |
parent | b367f7ba9302f00926f6b923ca1ca741b351ae96 (diff) |
Added possibility clear out the cached variables from the Loader.
Diffstat (limited to 'system')
-rw-r--r-- | system/core/Loader.php | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/system/core/Loader.php b/system/core/Loader.php index 0c16632eb..e5829ca80 100644 --- a/system/core/Loader.php +++ b/system/core/Loader.php @@ -471,6 +471,20 @@ class CI_Loader { // -------------------------------------------------------------------- /** + * Clear Cached Variables + * + * Clears the cached variables. + * + * @return void + */ + public function clear_vars() + { + $this->_ci_cached_vars = array(); + } + + // -------------------------------------------------------------------- + + /** * Get Variable * * Check if a variable is set and retrieve it. @@ -1293,4 +1307,4 @@ class CI_Loader { } /* End of file Loader.php */ -/* Location: ./system/core/Loader.php */
\ No newline at end of file +/* Location: ./system/core/Loader.php */ |