diff options
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/phpbb/event/md_exporter.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/phpBB/phpbb/event/md_exporter.php b/phpBB/phpbb/event/md_exporter.php index 068207d08a..415f001ac1 100644 --- a/phpBB/phpbb/event/md_exporter.php +++ b/phpBB/phpbb/event/md_exporter.php @@ -59,7 +59,7 @@ class md_exporter { $this->crawl_eventsmd($md_file, 'adm'); - $file_list = $this->get_recursive_file_list($this->root_path . 'adm/style/', 'adm/style/'); + $file_list = $this->get_recursive_file_list($this->root_path . 'adm/style/'); foreach ($file_list as $file) { $file_name = 'adm/style/' . $file; @@ -82,8 +82,7 @@ class md_exporter foreach ($styles as $style) { $file_list = $this->get_recursive_file_list( - $this->root_path . 'styles/' . $style . '/template/', - 'styles/' . $style . '/template/' + $this->root_path . 'styles/' . $style . '/template/' ); foreach ($file_list as $file) |