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

[ticket/12509] Update calls to set_custom_style in forgotten places

PHPBB3-12509
This commit is contained in:
Tristan Darricau
2014-05-14 02:16:32 +02:00
parent c8080d6464
commit 9d7c36041e
3 changed files with 18 additions and 3 deletions

View File

@@ -581,7 +581,12 @@ class p_master
if (is_dir($module_style_dir))
{
$template->set_custom_style('adm', array($module_style_dir, $phpbb_admin_path . 'style'));
$template->set_custom_style(array(
array(
'name' => 'adm',
'ext_path' => 'adm/style/',
)
), array($module_style_dir, $phpbb_admin_path . 'style'));
}
}