diff options
author | Cqoicebordel <Cqoicebordel@users.noreply.github.com> | 2014-12-10 18:11:20 +0100 |
---|---|---|
committer | Cqoicebordel <Cqoicebordel@users.noreply.github.com> | 2014-12-10 18:11:20 +0100 |
commit | b043237c619597131be28ae9d3d0917a3f9b0d4a (patch) | |
tree | 4f91774cb8f3836db9f14c8cdd5253ae36abd06b /searx/templates/courgette | |
parent | 74000c739dcc40e331df85d6219654ad06da100b (diff) | |
download | searxng-b043237c619597131be28ae9d3d0917a3f9b0d4a.tar.gz searxng-b043237c619597131be28ae9d3d0917a3f9b0d4a.zip |
Correct alt and title
Diffstat (limited to 'searx/templates/courgette')
-rw-r--r-- | searx/templates/courgette/result_templates/images.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/templates/courgette/result_templates/images.html b/searx/templates/courgette/result_templates/images.html index 1f15ff2bb..ebda5380b 100644 --- a/searx/templates/courgette/result_templates/images.html +++ b/searx/templates/courgette/result_templates/images.html @@ -1,6 +1,6 @@ <div class="image_result"> <p> - <a href="{{ result.img_src }}"><img src="{{ result.img_src }}" title={{ result.title }}/></a> + <a href="{{ result.img_src }}"><img src="{{ result.img_src }}" title="{{ result.title|striptags }}" alt="{{ result.title|striptags }}"/></a> <span class="url"><a href="{{ result.url }}" class="small_font">original context</a></span> </p> </div> |