From b0d5f2083e5b3200b7ab2f123f9cbff7ca82cc13 Mon Sep 17 00:00:00 2001 From: Damien Harwin Date: Tue, 7 Jan 2020 11:40:28 +0000 Subject: [PATCH] Add missing start paragraph tag Add missing start paragraph tag to the example link so that the HTML is well-structured again --- view/zf/auth/receive-code.phtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/zf/auth/receive-code.phtml b/view/zf/auth/receive-code.phtml index dea60fb..259def9 100644 --- a/view/zf/auth/receive-code.phtml +++ b/view/zf/auth/receive-code.phtml @@ -2,7 +2,7 @@ if ($this->code) { printf("

The authentication code is %s

", $this->code); printf("

Use this code to request an access token.

"); - printf("For instance, using HTTPie:

"); + printf("

For instance, using HTTPie:

"); printf( "

http POST %s grant_type=authorization_code code=%s redirect_uri=%s client_id=testclient client_secret=testpass

", $this->serverUrl('/oauth'),