mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
[ticket/11150] Install from ACP
PHPBB3-11150
This commit is contained in:
committed by
Tristan Darricau
parent
6a15ad1368
commit
d5672303a3
@@ -50,6 +50,10 @@ trait translate_composer_trait
|
||||
$lang_key = 'COMPOSER_DELETING';
|
||||
$parameters = [$elements[1]];
|
||||
}
|
||||
else
|
||||
{
|
||||
dump('WRITE | ' . $message);
|
||||
}
|
||||
|
||||
//$translated_message = $this->language->lang_array($lang_key, $parameters);
|
||||
$translated_message = call_user_func_array([$this->language, 'lang'], array_merge((array)$lang_key, $parameters));
|
||||
@@ -153,10 +157,18 @@ trait translate_composer_trait
|
||||
{
|
||||
continue;
|
||||
}
|
||||
else if ($message === ' Extracting archive')
|
||||
{
|
||||
continue;
|
||||
}
|
||||
else if (empty($message))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
else
|
||||
{
|
||||
dump('WRITE ERROR | ' . $message);
|
||||
}
|
||||
|
||||
//$translated_message = $this->language->lang_array($lang_key, $parameters);
|
||||
$translated_message = call_user_func_array([$this->language, 'lang'], array_merge((array)$lang_key, $parameters));
|
||||
|
Reference in New Issue
Block a user