mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 05:50:42 +02:00
[ticket/14492] Install all extensions if 'all' is specified for extensions
PHPBB3-14492
This commit is contained in:
@@ -111,7 +111,7 @@ class install_extensions extends \phpbb\install\task_base
|
|||||||
// Install extensions
|
// Install extensions
|
||||||
foreach ($available_extensions as $ext_name => $ext_path)
|
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;
|
continue;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user