diff options
author | Andrey Andreev <narf@devilix.net> | 2022-01-05 22:02:14 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2022-01-05 22:02:14 +0100 |
commit | 627f1058c1d72b267ab8ab441219198d6f2c24c6 (patch) | |
tree | 5999636aa8ebe4ee6273017df541bceb60fde8c9 /system/core/Loader.php | |
parent | c9a9d82bbc966c97876c2b6d5bc94ae3f4b4135f (diff) |
Whoops. Broke something in 004f0a1b41c27e3d40f62a51300599d35c54c0c0
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 aea1d82ed..2233021a0 100644 --- a/system/core/Loader.php +++ b/system/core/Loader.php @@ -953,7 +953,7 @@ class CI_Loader { * configuration. */ - is_array($_ci_vars) && $_ci_vars = array(); + is_array($_ci_vars) OR $_ci_vars = array(); // Include the global cached vars into the current _ci_vars if needed empty($this->_ci_cached_vars) OR $_ci_vars = array_merge($this->_ci_cached_vars, $_ci_vars); |