Skip to content
This repository has been archived by the owner on Jan 21, 2020. It is now read-only.

Add missing start paragraph tag #170

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion view/zf/auth/receive-code.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
if ($this->code) {
printf("<h2>The authentication code is %s</h2>", $this->code);
printf("<p>Use this code to request an access token.</p>");
printf("For instance, using <a href=\"https://github.com/jkbr/httpie\">HTTPie</a>:</p> ");
printf("<p>For instance, using <a href=\"https://github.com/jkbr/httpie\">HTTPie</a>:</p> ");
printf(
"<p>http POST %s grant_type=authorization_code code=%s redirect_uri=%s client_id=testclient client_secret=testpass</p>",
$this->serverUrl('/oauth'),
Expand Down