- Comments: akismet integration, adding a few spam related settings to the package (enablespamprotection, akismetkey etc), minor refactoring.

--HG--
extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4041482
This commit is contained in:
suhacan
2009-11-20 02:06:46 +00:00
parent da866aed29
commit b759bba2ec
7 changed files with 79 additions and 7 deletions

View File

@@ -66,7 +66,11 @@
<% else {%> Approved <% } %>
</td>
<td><%= commentEntry.Comment.UserName %></td>
<td><%= commentEntry.Comment.CommentText == null ? String.Empty : commentEntry.Comment.CommentText.Substring(32) %></td>
<td>
<% if (commentEntry.Comment.CommentText != null) {%>
<%= commentEntry.Comment.CommentText.Length > 23 ? commentEntry.Comment.CommentText.Substring(0, 24) : commentEntry.Comment.CommentText %>
<% } %>
</td>
<td><%= commentEntry.Comment.CommentDate %></td>
<td>Link to commented item</td>
</tr>