Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix проверки og:description на пустоту
  • Loading branch information
hizel committed Apr 13, 2012
1 parent 3828a6e commit 1298c7a
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
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 1298c7a

Please sign in to comment.