diff --git a/src/applications/config/option/PhabricatorCoreConfigOptions.php b/src/applications/config/option/PhabricatorCoreConfigOptions.php index 0c9e69ebf2..08266217ea 100644 --- a/src/applications/config/option/PhabricatorCoreConfigOptions.php +++ b/src/applications/config/option/PhabricatorCoreConfigOptions.php @@ -268,24 +268,24 @@ EOREMARKUP if ($protocol !== 'http' && $protocol !== 'https') { throw new PhabricatorConfigValidationException( pht( - "Config option '%s' is invalid. The URI must start with ". - "%s' or '%s'.", + 'Config option "%s" is invalid. The URI must start with '. + '"%s" or "%s".', + $key, 'http://', - 'https://', - $key)); + 'https://')); } $domain = $uri->getDomain(); if (strpos($domain, '.') === false) { throw new PhabricatorConfigValidationException( pht( - "Config option '%s' is invalid. The URI must contain a dot ". - "('%s'), like '%s', not just a bare name like '%s'. Some web ". - "browsers will not set cookies on domains with no TLD.", + 'Config option "%s" is invalid. The URI must contain a dot '. + '("%s"), like "%s", not just a bare name like "%s". Some web '. + 'browsers will not set cookies on domains with no TLD.', + $key, '.', 'http://example.com/', - 'http://example/', - $key)); + 'http://example/')); } $path = $uri->getPath();