mirror of
https://github.com/phpbb/phpbb.git
synced 2025-03-25 18:13:28 +01:00
[ticket/14492] Install all extensions if 'all' is specified for extensions
PHPBB3-14492
This commit is contained in:
parent
9f3b151dab
commit
1f27097208
@ -111,7 +111,7 @@ class install_extensions extends \phpbb\install\task_base
|
||||
// Install extensions
|
||||
foreach ($available_extensions as $ext_name => $ext_path)
|
||||
{
|
||||
if (!empty($install_extensions) && !in_array($ext_name, $install_extensions))
|
||||
if (!empty($install_extensions) && $install_extensions !== ['all'] && !in_array($ext_name, $install_extensions))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user