Fixed PHP reference error in core/Common.php
这个提交包含在:
父节点
126419b4fa
当前提交
2d19c07d5e
共有 1 个文件被更改,包括 5 次插入 和 2 次删除
|
|
@ -241,7 +241,10 @@
|
|||
}
|
||||
}
|
||||
|
||||
return $_config[0] =& $config;
|
||||
# Fix irritating PHP error
|
||||
# see http://stackoverflow.com/questions/28348879/only-variable-references-should-be-returned-by-reference-codeigniter
|
||||
$_config[0] =& $config;
|
||||
return $_config[0];
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
|
|
@ -505,4 +508,4 @@
|
|||
|
||||
|
||||
/* End of file Common.php */
|
||||
/* Location: ./system/core/Common.php */
|
||||
/* Location: ./system/core/Common.php */
|
||||
|
|
|
|||
正在加载…
在新工单中引用