diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-04-28 00:06:14 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-04-28 00:06:14 +0200 |
commit | bf8b9f01437b4b6bff3e27291eafcd73dbcbdb0c (patch) | |
tree | d1a87e4f202741928bbae4a556218fbce6b425dd /phpBB/phpbb/event/md_exporter.php | |
parent | 35f8b7f5ea606fd59ccfa4600e806b37e170c63a (diff) | |
download | forums-bf8b9f01437b4b6bff3e27291eafcd73dbcbdb0c.tar forums-bf8b9f01437b4b6bff3e27291eafcd73dbcbdb0c.tar.gz forums-bf8b9f01437b4b6bff3e27291eafcd73dbcbdb0c.tar.bz2 forums-bf8b9f01437b4b6bff3e27291eafcd73dbcbdb0c.tar.xz forums-bf8b9f01437b4b6bff3e27291eafcd73dbcbdb0c.zip |
[ticket/12273] Remove old parameter from function call
PHPBB3-12273
Diffstat (limited to 'phpBB/phpbb/event/md_exporter.php')
-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) |