Fixed error Only variable references should be returned by reference

Severity: Notice Message: Only variable references should be returned by reference Filename: core/Common.php Line Number: 257
This commit is contained in:
Kamaro Lambert
2015-11-30 23:30:56 +02:00
parent 4916f98bcb
commit afa203e73c

View File

@@ -253,8 +253,8 @@ if ( ! function_exists('get_config'))
}
}
}
return $_config[0] =& $config;
$_config[0] =& $config;
return $_config[0];
}
}
@@ -561,4 +561,4 @@ if ( ! function_exists('html_escape'))
}
/* End of file Common.php */
/* Location: ./system/core/Common.php */
/* Location: ./system/core/Common.php */