From ea43c0bc863572dc8037b055f93a072a68d7b817 Mon Sep 17 00:00:00 2001 From: Bob Trahan Date: Wed, 15 May 2013 08:40:29 -0700 Subject: [PATCH] Diffusion - fix bug from D5883 Summary: forgot to specify the commit! On github as https://github.com/facebook/phabricator/pull/318, though this is a tighter fix. Test Plan: tried to save an owners package with a folder - FAIL - then with the patch - GREAT SUCCESS Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D5933 --- src/applications/owners/storage/PhabricatorOwnersPackage.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/applications/owners/storage/PhabricatorOwnersPackage.php b/src/applications/owners/storage/PhabricatorOwnersPackage.php index f3e644cb6f..4d90f1d0af 100644 --- a/src/applications/owners/storage/PhabricatorOwnersPackage.php +++ b/src/applications/owners/storage/PhabricatorOwnersPackage.php @@ -319,6 +319,7 @@ final class PhabricatorOwnersPackage extends PhabricatorOwnersDAO $drequest, 'diffusion.browsequery', array( + 'commit' => $drequest->getCommit(), 'path' => $path, 'needValidityOnly' => true))); $valid = $results->isValidResults();