protected function findTemplate($name)
{
// normalize name
- $name = str_replace('\\', '/', $name);
+ $name = preg_replace('#(/+|\\+)#', '/', str_replace('\\', '/', $name));
$parts = explode('/', $name);
$level = 0;
{
return array(
array('..\\AutoloaderTest.php'),
+ array('..\\\\\\AutoloaderTest.php'),
array('../AutoloaderTest.php'),
+ array('..////AutoloaderTest.php'),
array('./../AutoloaderTest.php'),
array('.\\..\\AutoloaderTest.php'),
array('././././././../AutoloaderTest.php'),
array('foo/../bar/../../AutoloaderTest.php'),
array('foo/bar/../../../AutoloaderTest.php'),
array('filters/../../AutoloaderTest.php'),
+ array('filters//..//..//AutoloaderTest.php'),
+ array('filters\\..\\..\\AutoloaderTest.php'),
+ array('filters\\\\..\\\\..\\\\AutoloaderTest.php'),
+ array('filters\\//../\\/\\..\\AutoloaderTest.php'),
);
}
}