mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-18 04:42:40 +01:00
Catch more known-bad versions of APC
Summary: Fixes T3550. @nmalcolm ended up with "3.1.15-dev". Test Plan: n/a Reviewers: btrahan, nmalcolm Reviewed By: btrahan CC: aran Maniphest Tasks: T3550 Differential Revision: https://secure.phabricator.com/D6473
This commit is contained in:
parent
89ee928a51
commit
4a19b51b92
1 changed files with 1 additions and 0 deletions
|
@ -260,6 +260,7 @@ final class PhabricatorStartup {
|
|||
$known_bad = array(
|
||||
'3.1.14' => true,
|
||||
'3.1.15' => true,
|
||||
'3.1.15-dev' => true,
|
||||
);
|
||||
if (isset($known_bad[$apc_version])) {
|
||||
self::didFatal(
|
||||
|
|
Loading…
Reference in a new issue