diff options
author | Aaron Parecki <aaron@parecki.com> | 2014-06-28 16:59:16 -0700 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2014-06-28 16:59:16 -0700 |
commit | b2337158a38b7dfda6d5c4e3c5f0dd4ae9f4845d (patch) | |
tree | 3f4edbd6df7e03cd9be8418788987b3e20e09708 /views | |
parent | 9c2be331816a8a59360def37957ba36816d1f252 (diff) |
remove reference to HTTP header
Diffstat (limited to 'views')
-rw-r--r-- | views/auth_start.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/views/auth_start.php b/views/auth_start.php index 70dc83d..8635f07 100644 --- a/views/auth_start.php +++ b/views/auth_start.php @@ -10,7 +10,7 @@ <div class="bs-callout bs-callout-success">Found your authorization endpoint: <code><?= $this->authorizationEndpoint ?></code></div> <?php else: ?> <div class="bs-callout bs-callout-danger">Could not find your authorization endpoint!</div> - <p>You need to set your authorization endpoint in a <code><link></code> tag on your home page or in an HTTP header.</p> + <p>You need to set your authorization endpoint in a <code><link></code> tag on your home page.</p> <?= partial('partials/auth-endpoint-help') ?> <?php endif; ?> </div> @@ -24,7 +24,7 @@ <div class="bs-callout bs-callout-success">Found your token endpoint: <code><?= $this->tokenEndpoint ?></code></div> <?php else: ?> <div class="bs-callout bs-callout-danger">Could not find your token endpoint!</div> - <p>You need to set your token endpoint in a <code><link></code> tag on your home page or in an HTTP header.</p> + <p>You need to set your token endpoint in a <code><link></code> tag on your home page.</p> <?= partial('partials/token-endpoint-help') ?> <?php endif; ?> @@ -39,7 +39,7 @@ <div class="bs-callout bs-callout-success">Found your Micropub endpoint: <code><?= $this->micropubEndpoint ?></code></div> <?php else: ?> <div class="bs-callout bs-callout-danger">Could not find your Micropub endpoint!</div> - <p>You need to set your Micropub endpoint in a <code><link></code> tag on your home page or in an HTTP header.</p> + <p>You need to set your Micropub endpoint in a <code><link></code> tag on your home page.</p> <?= partial('partials/micropub-endpoint-help', $this) ?> <?php endif; ?> |