Fix even more Warnings
This commit is contained in:
parent
80b245775f
commit
0509d0d69d
1 changed files with 4 additions and 2 deletions
|
@ -70,8 +70,10 @@ if (isset($_GET['f'])) {
|
||||||
if ($_GET['f'] != '') {
|
if ($_GET['f'] != '') {
|
||||||
$tr = array('(' => '\(', ')' => '\)');
|
$tr = array('(' => '\(', ')' => '\)');
|
||||||
$f = strtr($_GET['f'], $tr);
|
$f = strtr($_GET['f'], $tr);
|
||||||
$files = array_values(preg_grep('/.*'.$f.'.*/i', $files));
|
if (!empty($files))
|
||||||
$dirs = array_values(preg_grep('/.*'.$f.'.*/i', $dirs));
|
$files = array_values(preg_grep('/.*'.$f.'.*/i', $files));
|
||||||
|
if (!empty($dirs))
|
||||||
|
$dirs = array_values(preg_grep('/.*'.$f.'.*/i', $dirs));
|
||||||
$filter='&f='.$_GET['f'];
|
$filter='&f='.$_GET['f'];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue