1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/16955] Update namespace for iterators to finder

PHPBB3-16955
This commit is contained in:
Marc Alexander
2023-01-02 22:10:50 +01:00
parent 4d6dbfb745
commit a366eb7f6c
7 changed files with 7 additions and 7 deletions

View File

@@ -220,7 +220,7 @@ class acp_language
{
try
{
$iterator = new \phpbb\iterator\recursive_path_iterator($this->phpbb_root_path . 'language/' . $this->config['default_lang'] . '/');
$iterator = new \phpbb\finder\recursive_path_iterator($this->phpbb_root_path . 'language/' . $this->config['default_lang'] . '/');
}
catch (\Exception $e)
{