From fe283b3fe70e6c73bdbeb02c564150a70ba41832 Mon Sep 17 00:00:00 2001 From: Damien Harwin Date: Mon, 17 Jun 2019 17:48:03 +0100 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'),