Skip to content

Commit

Permalink
removed a broken h() call in server controller
Browse files Browse the repository at this point in the history
  • Loading branch information
Philippe Van Eerdenbrugghe committed Jan 14, 2013
1 parent edaf0e6 commit fa3a399
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/controllers/masq/server_controller.rb
Expand Up @@ -204,7 +204,7 @@ def render_openid_error(exception)
when OpenID::Server::MalformedTrustRoot then "Malformed trust root '#{exception.to_s}'"
else exception.to_s
end
render :text => h("Invalid OpenID request: #{error}"), :status => 500
render :text => "Invalid OpenID request: #{error}", :status => 500
end

private
Expand Down

0 comments on commit fa3a399

Please sign in to comment.