Ticket #5476: issue_5476.patch

File issue_5476.patch, 1.0 KB (added by Vijeth, 7 years ago)

Removed line breaks or spaces around the verifier code.

  • mediagoblin/templates/mediagoblin/api/oob.html

    From 473fdd2100487a52b8d313fd923ecd0406979ca0 Mon Sep 17 00:00:00 2001
    From: vijeth-aradhya <vijthaaa@gmail.com>
    Date: Fri, 20 Jan 2017 11:56:01 +0530
    Subject: [PATCH] oob.html: Removed line breaks around the verifier code
    
    There was an extra space that was displayed after
    the verfication code which caused verification to
    fail when just copied. Hence, any line breaks or
    spaces has been removed
    
    Fixes #5476
    ---
     mediagoblin/templates/mediagoblin/api/oob.html | 4 +---
     1 file changed, 1 insertion(+), 3 deletions(-)
    
    diff --git a/mediagoblin/templates/mediagoblin/api/oob.html b/mediagoblin/templates/mediagoblin/api/oob.html
    index 97bdd9c..e4d3a13 100644
    a b  
    2727
    2828<h4>{% trans %}Copy and paste this <strong>verifier code</strong> into your client:{% endtrans %}</h4>
    2929
    30 <p class="verifier">
    31    {{ oauth_request.verifier }}
    32 </p>
     30<p class="verifier">{{ oauth_request.verifier }}</p>
    3331{% endblock %}