diff options
author | Christian Mohr <christian.mohr@insitu.de> | 2018-01-03 18:46:18 +0100 |
---|---|---|
committer | Christian Mohr <christian.mohr@insitu.de> | 2018-01-03 18:46:18 +0100 |
commit | 88c7763b4832ad14b4ff1381d0f158204eb0bb6f (patch) | |
tree | 1a75379a7f4568e0f5b355b320e2533dd36c58b2 /system/core/Loader.php | |
parent | 5d7e8c0ef3f324ead7cb97a9738dc790e0b0b196 (diff) |
reproduce caching behaviour for nested view() calls
Signed-off-by: Christian Mohr <christian.mohr@insitu.de>
Diffstat (limited to 'system/core/Loader.php')
-rw-r--r-- | system/core/Loader.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Loader.php b/system/core/Loader.php index 3506a0ef1..e75578ae8 100644 --- a/system/core/Loader.php +++ b/system/core/Loader.php @@ -960,7 +960,7 @@ class CI_Loader { // push current _ci_vars state to stack and extract it array_push($this->_ci_vars_stack, $_ci_vars); - extract($this->_ci_cached_vars); + extract($_ci_vars); /** * Buffer the output |