Skip to content

Commit

Permalink
Merge pull request #250 from hizel/og-description
Browse files Browse the repository at this point in the history
fix проверки og:description на пустоту
  • Loading branch information
maxcom committed Apr 13, 2012
2 parents be571ff + 1298c7a commit 4fafa0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/webapp/WEB-INF/jsp/view-message.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<c:if test="${preparedMessage.section.imagepost}">
<meta property="og:image" content="${preparedMessage.image.mediumName}">
</c:if>
<c:if test="${preparedMessage.ogDescription}">
<c:if test="${not empty preparedMessage.ogDescription}">
<meta property="og:description" content="${preparedMessage.ogDescription}">
</c:if>
<c:if test="${prevMessage != null}">
Expand Down

0 comments on commit 4fafa0d

Please sign in to comment.