Index: src/applications/auth/provider/PhabricatorAuthProviderOAuth1JIRA.php =================================================================== --- src/applications/auth/provider/PhabricatorAuthProviderOAuth1JIRA.php +++ src/applications/auth/provider/PhabricatorAuthProviderOAuth1JIRA.php @@ -11,6 +11,10 @@ return pht('JIRA'); } + public function getDescriptionForCreate() { + return pht('Configure JIRA OAuth. NOTE: Only supports JIRA 6.'); + } + public function getConfigurationHelp() { if ($this->isSetup()) { return pht( @@ -162,6 +166,11 @@ "again.")); } + $form->appendRemarkupInstructions( + pht( + 'NOTE: This provider **only supports JIRA 6**. It will not work with '. + 'JIRA 5 or earlier.')); + $is_setup = $this->isSetup(); $e_required = $request->isFormPost() ? null : true;