1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

[ticket/14492] Set install extensions to synthetic and fix step count

PHPBB3-14492
This commit is contained in:
Marc Alexander
2016-02-24 13:49:20 +01:00
parent 89fef2ce13
commit eb1ade6768
3 changed files with 4 additions and 7 deletions

View File

@@ -97,11 +97,6 @@ class install_extensions extends \phpbb\install\task_base
*/
public function run()
{
if (defined('PHPBB_ENVIRONMENT') && PHPBB_ENVIRONMENT === 'test')
{
return;
}
$this->user->session_begin();
$this->user->setup(array('common', 'acp/common', 'cli'));
@@ -134,7 +129,7 @@ class install_extensions extends \phpbb\install\task_base
*/
static public function get_step_count()
{
return 0;
return 1;
}
/**