From 49e94023935f2d3857cd9ec7a8b8bc8c196a9dec Mon Sep 17 00:00:00 2001 From: Urban Müller Date: Mon, 23 Feb 2015 15:34:45 +0100 Subject: kill null bytes in files= --- itjs.class | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/itjs.class b/itjs.class index df33810..5d9cd62 100644 --- a/itjs.class +++ b/itjs.class @@ -136,7 +136,7 @@ static function filenames($filelist) foreach (array_filter(explode(",", basename($filelist))) as $file) { - $filenames = $special[$file] ?: (file_exists("$path/" . it::replace(array('\?.*' => ""), $file)) ? "$path/$file" : "$libsearch/itjs/$file"); + $filenames = $special[$file] ?: (file_exists("$path/" . it::replace(array('[\?\x00].*' => ""), $file)) ? "$path/$file" : "$libsearch/itjs/$file"); foreach (explode(",", $filenames) as $filename) if (!$seen[$filename]++) -- cgit v1.2.3