diff options
| author | Oleg Pudeyev <oleg@bsdpower.com> | 2012-12-10 13:35:15 -0500 |
|---|---|---|
| committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-12-10 14:02:57 -0500 |
| commit | a0211ff2eb3a61f627d4ac4732c6ab68c2529d9e (patch) | |
| tree | bfefda0ca7d02ded46932cd6b4692bf1f2e1ad8c | |
| parent | 29f7e729ed389f4312dbe8455d927a4bc2204f35 (diff) | |
| download | forums-a0211ff2eb3a61f627d4ac4732c6ab68c2529d9e.tar forums-a0211ff2eb3a61f627d4ac4732c6ab68c2529d9e.tar.gz forums-a0211ff2eb3a61f627d4ac4732c6ab68c2529d9e.tar.bz2 forums-a0211ff2eb3a61f627d4ac4732c6ab68c2529d9e.tar.xz forums-a0211ff2eb3a61f627d4ac4732c6ab68c2529d9e.zip | |
[feature/template-events] Pass arguments in correct order.
Thank you imkingdavid.
PHPBB3-9550
| -rw-r--r-- | phpBB/includes/style/style.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/style/style.php b/phpBB/includes/style/style.php index 7c91edd034..4703c3a219 100644 --- a/phpBB/includes/style/style.php +++ b/phpBB/includes/style/style.php @@ -106,7 +106,7 @@ class phpbb_style $paths[] = $this->get_style_path($name); } - return $this->set_custom_style($style_path, $names, $paths); + return $this->set_custom_style($style_path, $paths, $names); } /** |
