diff options
Diffstat (limited to 'search.php')
-rw-r--r-- | search.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -64,7 +64,7 @@ try { foreach ($output as $upload) { $match = false; foreach ($args as $arg) { - if (!is_null($arg) && strpos($upload->filename, $arg) === false) { + if (!is_null($arg) && stripos($upload->filename, $arg) === false) { $match = false; break; } |