From 2fe553761ae703caf53972fcd5a3ffe81bfa5def Mon Sep 17 00:00:00 2001 From: epriestley Date: Tue, 30 Dec 2014 08:01:44 -0800 Subject: [PATCH] Increase severity of "phabricator.base-uri" warning Summary: Fixes T6828. Test Plan: reading Reviewers: chad Reviewed By: chad Subscribers: epriestley Maniphest Tasks: T6828 Differential Revision: https://secure.phabricator.com/D11075 --- .../config/check/PhabricatorSetupCheckBaseURI.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/applications/config/check/PhabricatorSetupCheckBaseURI.php b/src/applications/config/check/PhabricatorSetupCheckBaseURI.php index 8863a4af39..187c2cd265 100644 --- a/src/applications/config/check/PhabricatorSetupCheckBaseURI.php +++ b/src/applications/config/check/PhabricatorSetupCheckBaseURI.php @@ -31,13 +31,12 @@ final class PhabricatorSetupCheckBaseURI extends PhabricatorSetupCheck { $base_uri_guess = PhabricatorEnv::getRequestBaseURI(); $summary = pht( - 'The base URI for this install is not configured. Configuring it will '. - 'improve security and enable features.'); + 'The base URI for this install is not configured. Many major features '. + 'will not work properly until you configure it.'); $message = pht( - 'The base URI for this install is not configured. Configuring it will '. - 'improve security and allow background processes (like daemons and '. - 'scripts) to generate links.'. + 'The base URI for this install is not configured, and major features '. + 'will not work properly until you configure it.'. "\n\n". 'You should set the base URI to the URI you will use to access '. 'Phabricator, like "http://phabricator.example.com/".'.