Skip to content

Commit

Permalink
Merge pull request hwi#427 from backender/patch-1
Browse files Browse the repository at this point in the history
check if error is defined
  • Loading branch information
XWB committed Dec 6, 2013
2 parents a1ab9f7 + a58ff3e commit 1263e4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Resources/views/Connect/login.html.twig
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{% extends 'HWIOAuthBundle::layout.html.twig' %}

{% block hwi_oauth_content %}
{% if error %}
{% if error is defined and error %}
<span>{{ error }}</span>
{% endif %}
{% for owner in hwi_oauth_resource_owners() %}
Expand Down

0 comments on commit 1263e4e

Please sign in to comment.