1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-10-05 04:01:49 +02:00

[ticket/15392] Remove not needed realpath()

PHPBB3-15392
This commit is contained in:
DinHere
2017-12-03 21:56:46 +02:00
committed by Marc Alexander
parent 8c9d26db1f
commit 448b6a7d49
3 changed files with 8 additions and 9 deletions

View File

@@ -20,8 +20,8 @@
//
die("Please read the first lines of this script for instructions on how to enable it");
$code_dir = realpath(__DIR__ . '/../');
$test_dir = realpath(__DIR__ . '/../../tests/');
$code_dir = __DIR__ . '/../';
$test_dir = __DIR__ . '/../../tests/';
$iterator = new \AppendIterator();
$iterator->append(new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($code_dir)));
$iterator->append(new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($test_dir)));