Browse Source

fix path to the website proof

Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
tags/v12.0.0beta1
Bjoern Schiessle 7 years ago
parent
commit
5464b14ef1
No account linked to committer's email address

+ 1
- 1
settings/BackgroundJobs/VerifyUserData.php View File

@@ -134,7 +134,7 @@ class VerifyUserData extends Job {

$result = false;

$url = rtrim($argument['data'], '/') . '/well-known/' . 'CloudIdVerificationCode.txt';
$url = rtrim($argument['data'], '/') . '/.well-known/' . 'CloudIdVerificationCode.txt';

$client = $this->httpClientService->newClient();
try {

+ 1
- 1
settings/Controller/UsersController.php View File

@@ -547,7 +547,7 @@ class UsersController extends Controller {
break;
case 'verify-website':
$accountData[AccountManager::PROPERTY_WEBSITE]['verified'] = AccountManager::VERIFICATION_IN_PROGRESS;
$msg = $this->l10n->t('In order to verify your Website store following content in your web-root at \'CloudIdVerificationCode.txt\' (please make sure that the complete text is in one line):');
$msg = $this->l10n->t('In order to verify your Website store following content in your web-root at \'.well-known/CloudIdVerificationCode.txt\' (please make sure that the complete text is in one line):');
$type = AccountManager::PROPERTY_WEBSITE;
$data = $accountData[AccountManager::PROPERTY_WEBSITE]['value'];
break;

Loading…
Cancel
Save