From 036519a4485948fe06fad43e30bbbb3e5df7bb6f Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Wed, 19 Aug 2015 08:22:00 +0100 Subject: [PATCH 1/1] Add missing parenthesis Fixes #1037 --- app/views/oauth/authorize.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/oauth/authorize.html.erb b/app/views/oauth/authorize.html.erb index 7b0a2cc16..565d13808 100644 --- a/app/views/oauth/authorize.html.erb +++ b/app/views/oauth/authorize.html.erb @@ -15,5 +15,5 @@
  • <%= check_box_tag perm.to_s, "yes", @token.read_attribute(perm) %><%= t "oauth.oauthorize.#{perm}" %>
  • <% end %> -

    <%= submit_tag t("oauth.oauthorize.grant_access" %>

    +

    <%= submit_tag t("oauth.oauthorize.grant_access") %>

    <% end %> -- 2.43.2