diff --git a/src/controller/SprintController.php b/src/controller/SprintController.php index bb7667d47736bacb53ca006bb300351b0aae6067..143fc2f42b7b58f107419189059b9cac1917e98c 100644 --- a/src/controller/SprintController.php +++ b/src/controller/SprintController.php @@ -130,7 +130,8 @@ abstract class SprintController extends PhabricatorController { $picture = $project->getProfileImageURI(); $name = $project->getName(); $enable_phragile = PhabricatorEnv::getEnvConfig('sprint.enable-phragile'); - $phragile_uri = new PhutilURI('https://phragile.wmflabs.org/sprints/'.$id); + $phragile_base_uri = PhabricatorEnv::getEnvConfig('sprint.phragile-uri'); + $phragile_uri = new PhutilURI($phragile_base_uri.$id); $columns = id(new PhabricatorProjectColumnQuery()) ->setViewer($viewer) ->withProjectPHIDs(array($project->getPHID()))