Skip to content

Commit

Permalink
Fixed bug where opening quote missing from alt text on thumbs
Browse files Browse the repository at this point in the history
git-svn-id: http://scm.dspace.org/svn/repo/trunk@1069 9c30dcfa-912a-0410-8fc2-9e0234be79fd
  • Loading branch information
ScottYeadon committed Sep 28, 2004
1 parent f68bc81 commit 03b3bca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dspace/src/org/dspace/app/webui/jsptag/ItemListTag.java
Expand Up @@ -504,7 +504,7 @@ private String getThumbMarkup(HttpServletRequest hrq, Item item) throws JspExcep
.append(thumbnailBitstream.getID())
.append("/")
.append(URLEncoder.encode(thumbnailBitstream.getName()))
.append("\" alt=")
.append("\" alt=\"")
.append(thumbnailBitstream.getName())
.append("\" ")
.append(getScalingAttr(hrq, thumbnailBitstream))
Expand Down

0 comments on commit 03b3bca

Please sign in to comment.