diff --git a/src/applications/search/engine/PhabricatorProfileMenuEngine.php b/src/applications/search/engine/PhabricatorProfileMenuEngine.php --- a/src/applications/search/engine/PhabricatorProfileMenuEngine.php +++ b/src/applications/search/engine/PhabricatorProfileMenuEngine.php @@ -130,6 +130,13 @@ } $item_id = $request->getURIData('itemID'); + + // If we miss on the MenuEngine route, try the EditEngine route. This will + // be populated while editing items. + if (!$item_id) { + $item_id = $request->getURIData('id'); + } + $item_list = $this->getItems(); $selected_item = null;