Skip to content

Commit

Permalink
Merge pull request ckan#1561 from ckan/1540-fix-logo-alt-text
Browse files Browse the repository at this point in the history
Fixes extraneous "Logo" test in alt and title attributes
  • Loading branch information
kindly committed Mar 4, 2014
2 parents f326816 + 6f20147 commit af65d2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckan/templates/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@

{% block header_logo %}
{% if g.site_logo %}
<a class="logo" href="{{ h.url('home') }}"><img src="{{ h.url_for_static(g.site_logo) }}" alt="{{ g.site_title }} Logo" title="{{ g.site_title }} Logo" /></a>
<a class="logo" href="{{ h.url('home') }}"><img src="{{ h.url_for_static(g.site_logo) }}" alt="{{ g.site_title }}" title="{{ g.site_title }}" /></a>
{% else %}
<h1>
<a href="{{ h.url('home') }}">{{ g.site_title }}</a>
Expand Down

0 comments on commit af65d2a

Please sign in to comment.