mirror of
https://github.com/phpbb/phpbb.git
synced 2025-01-17 22:28:46 +01:00
[ticket/15392] Remove not needed realpath()
PHPBB3-15392
This commit is contained in:
parent
8c9d26db1f
commit
448b6a7d49
@ -20,10 +20,10 @@
|
||||
//
|
||||
die("Please read the first lines of this script for instructions on how to enable it");
|
||||
|
||||
$namespace_dir = realpath(__DIR__ . '/../phpbb/');
|
||||
$code_dir = realpath(__DIR__ . '/../');
|
||||
$test_dir = realpath(__DIR__ . '/../../tests/');
|
||||
$config_dir = realpath(__DIR__ . '/../config/');
|
||||
$namespace_dir = __DIR__ . '/../phpbb/';
|
||||
$code_dir = __DIR__ . '/../';
|
||||
$test_dir = __DIR__ . '/../../tests/';
|
||||
$config_dir = __DIR__ . '/../config/';
|
||||
|
||||
function map_class_name($old_class_name, $code_dir)
|
||||
{
|
||||
@ -191,4 +191,3 @@ foreach ($iterator as $file)
|
||||
file_put_contents($file->getPathname(), $code);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -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)));
|
||||
|
@ -3240,12 +3240,12 @@ function phpbb_filter_root_path($errfile)
|
||||
{
|
||||
if ($phpbb_filesystem)
|
||||
{
|
||||
$root_path = $phpbb_filesystem->realpath(__DIR__ . '/../');
|
||||
$root_path = $phpbb_filesystem-> __DIR__ . '/../';
|
||||
}
|
||||
else
|
||||
{
|
||||
$filesystem = new \phpbb\filesystem\filesystem();
|
||||
$root_path = $filesystem->realpath(__DIR__ . '/../');
|
||||
$root_path = $filesystem-> __DIR__ . '/../';
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user