1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-05 16:27:38 +02:00

[ticket/15135] Parse language files in acp_extensions instead of md manager

PHPBB3-15135
This commit is contained in:
Marc Alexander
2017-03-19 22:37:19 +01:00
parent bd34b2301e
commit 6f1de69bbe
2 changed files with 5 additions and 4 deletions

View File

@@ -162,7 +162,8 @@ class acp_extensions
}
catch (\phpbb\extension\exception $e)
{
trigger_error($e . adm_back_link($this->u_action), E_USER_WARNING);
$message = call_user_func_array(array($this->user, 'lang'), array_merge(array($e->getMessage()), $e->get_parameters()));
trigger_error($message, E_USER_WARNING);
}
$extension = $phpbb_extension_manager->get_extension($ext_name);