mirror of
https://github.com/e107inc/e107.git
synced 2025-07-31 03:40:37 +02:00
file_inspector::inspect() optional arguments
file_inspector::inspect() now works in PHP 7 because pass-by-reference variables are optional now as they were intended. Fixes: #3013
This commit is contained in:
2
e107_admin/fileinspector.php
Normal file → Executable file
2
e107_admin/fileinspector.php
Normal file → Executable file
@@ -569,7 +569,7 @@ class file_inspector {
|
||||
// $dir
|
||||
// &$tree_end
|
||||
// &$parent_expand
|
||||
function inspect($list, $deprecated, $level, $dir, &$tree_end, &$parent_expand)
|
||||
function inspect($list, $deprecated, $level, $dir, &$tree_end = null, &$parent_expand = null)
|
||||
{
|
||||
global $coredir;
|
||||
|
||||
|
Reference in New Issue
Block a user