1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-01 04:10:38 +02:00

Merge pull request #3014 from Deltik/fix-3013

Fixes: #3013 Proper file_inspector::inspect() optional arguments
This commit is contained in:
Cameron
2018-01-28 13:25:07 -08:00
committed by GitHub

4
e107_admin/fileinspector.php Normal file → Executable file
View 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;
@@ -1707,4 +1707,4 @@ i.fa-folder-open-o, i.fa-times-circle-o { cursor:pointer }
return $text;
}
?>
?>