@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | if ($_log === NULL) |
202 | 202 | { |
203 | 203 | // references cannot be directly assigned to static variables, so we use an array |
204 | - $_log[0] =& load_class('Log', 'core'); |
|
204 | + $_log[0] = & load_class('Log', 'core'); |
|
205 | 205 | } |
206 | 206 | |
207 | 207 | $_log[0]->write_log($level, $message); |
@@ -291,7 +291,7 @@ discard block |
||
291 | 291 | |
292 | 292 | // Save status code in Output object |
293 | 293 | // added by ci-phpunit-test |
294 | - $CI =& get_instance(); |
|
294 | + $CI = & get_instance(); |
|
295 | 295 | $output = $CI->output; |
296 | 296 | $output->_status = [ |
297 | 297 | 'code' => $code, |
@@ -405,7 +405,7 @@ discard block |
||
405 | 405 | if (empty($_config)) |
406 | 406 | { |
407 | 407 | // references cannot be directly assigned to static variables, so we use an array |
408 | - $_config[0] =& get_config(); |
|
408 | + $_config[0] = & get_config(); |
|
409 | 409 | } |
410 | 410 | |
411 | 411 | return isset($_config[0][$item]) ? $_config[0][$item] : NULL; |