diff options
author | Andrey Andreev <narf@devilix.net> | 2020-01-27 18:26:03 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2020-01-27 18:26:03 +0100 |
commit | 4fc777a92942eee78f72cfc86453942bc21da020 (patch) | |
tree | 28a4070fe9efa30ecf88da8a008e7b34418f9a63 /system/libraries | |
parent | f7a79380337f5b8ce56f560e3a98d379ba767945 (diff) |
[ci skip] Fix #5879
Diffstat (limited to 'system/libraries')
-rw-r--r-- | system/libraries/Profiler.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/libraries/Profiler.php b/system/libraries/Profiler.php index d7a171f26..e3c4bd10a 100644 --- a/system/libraries/Profiler.php +++ b/system/libraries/Profiler.php @@ -105,7 +105,7 @@ class CI_Profiler { { if ( ! isset($config[$section])) { - $this->_compile_{$section} = TRUE; + $this->{'_compile_'.$section} = TRUE; } } @@ -135,7 +135,7 @@ class CI_Profiler { { if (in_array($method, $this->_available_sections)) { - $this->_compile_{$method} = ($enable !== FALSE); + $this->{'_compile_'.$method} = ($enable !== FALSE); } } } @@ -554,7 +554,7 @@ class CI_Profiler { foreach ($this->_available_sections as $section) { - if ($this->_compile_{$section} !== FALSE) + if ($this->{'_compile_'.$section} !== FALSE) { $func = '_compile_'.$section; $output .= $this->{$func}(); |