1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-19 06:51:33 +02:00

[ticket/11626] Include the template file in acp_board

PHPBB3-11626
This commit is contained in:
Joseph Warner
2013-07-08 13:59:24 -04:00
parent 80eb95bbb7
commit 29b472c2e5
3 changed files with 5 additions and 6 deletions

View File

@@ -655,15 +655,13 @@ class acp_board
foreach ($auth_providers as $provider)
{
$fields = $provider->acp($this->new_config);
if ($fields['tpl'])
$auth_tpl = $provider->get_acp_template($this->new_config);
if ($auth_tpl)
{
$template->assign_block_vars('auth_tpl', array(
'TPL' => $fields['tpl'],
'TPL' => $provider->get_acp_template($this->new_config),
));
}
unset($fields);
}
}
}