1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-25 18:13:28 +01:00

[ticket/14492] Check if composer.json exists in viglink folder on file_check

PHPBB3-14492
This commit is contained in:
Marc Alexander 2016-03-02 13:02:44 +01:00
parent ffe900c72d
commit 930b02342e
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -142,7 +142,7 @@ class file_check extends task_base
// with it but it does not exist (e.g. deleted by admin)
if (strpos($file, $this->phpbb_root_path . 'ext/phpbb/viglink') !== false &&
$this->update_helper->phpbb_version_compare($update_info['version']['from'], '3.2.0', '>=') &&
!$this->filesystem->exists($this->phpbb_root_path . 'ext/phpbb/viglink'))
!$this->filesystem->exists($this->phpbb_root_path . 'ext/phpbb/viglink/composer.json'))
{
continue;
}