From ed57869fc294aac6acc673947282f92117aad829 Mon Sep 17 00:00:00 2001 From: Bob Trahan Date: Tue, 15 May 2012 14:14:22 -0700 Subject: [PATCH] Fix setup from getRequiredClasses buggyboo Summary: D2470 added Package mailhandler, which was configured incorrectly in the getRequiredClasses function. this makes it like the other mail handlers Reported at https://github.com/facebook/phabricator/issues/112 Test Plan: setup mode no longer fails Reviewers: epriestley, jungejason, royklopper Reviewed By: royklopper CC: aran, Koolvin Differential Revision: https://secure.phabricator.com/D2476 --- src/infrastructure/env/PhabricatorEnv.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/infrastructure/env/PhabricatorEnv.php b/src/infrastructure/env/PhabricatorEnv.php index e71efd1b21..102f1121e6 100644 --- a/src/infrastructure/env/PhabricatorEnv.php +++ b/src/infrastructure/env/PhabricatorEnv.php @@ -303,7 +303,7 @@ final class PhabricatorEnv { 'metamta.maniphest.reply-handler' => 'PhabricatorMailReplyHandler', 'metamta.differential.reply-handler' => 'PhabricatorMailReplyHandler', 'metamta.diffusion.reply-handler' => 'PhabricatorMailReplyHandler', - 'metamta.package.reply-handler' => 'OwnersPackageReplyHandler', + 'metamta.package.reply-handler' => 'PhabricatorMailReplyHandler', 'storage.engine-selector' => 'PhabricatorFileStorageEngineSelector', 'search.engine-selector' => 'PhabricatorSearchEngineSelector', 'differential.field-selector' => 'DifferentialFieldSelector',