mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
[ticket/17336] Skip extension package aliases in dev stabilities
PHPBB-17336 Signed-off-by: Matt Friedman <maf675@gmail.com>
This commit is contained in:
parent
e2ff7a7178
commit
ec34f72a3b
1 changed files with 5 additions and 0 deletions
|
@ -396,6 +396,11 @@ class installer
|
|||
/** @var CompletePackage $version */
|
||||
foreach ($versions as $version)
|
||||
{
|
||||
if (strpos($version->getVersion(), '9999999') === 0)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
if (!$highest_version || version_compare($version->getVersion(), $highest_version->getVersion(), '>'))
|
||||
{
|
||||
$highest_version = $version;
|
||||
|
|
Loading…
Add table
Reference in a new issue