Use a more general way to like something.
[Sone.git] / src / main / resources / templates / include / viewPost.html
index 991ccec..d212c39 100644 (file)
@@ -7,15 +7,17 @@
                <div class="time"><a href="viewPost.html?post=<% post.id|html>"><% post.time|date format="MMM d, yyyy, HH:mm:ss"></a></div>
                <div class="likes<%if post.likes.size|match value=0> hidden<%/if>"><span>⬆<span class="like-count"><% post.likes.size></span></span></div>
                <%ifnull ! currentSone>
-                       <form class="like<%if post.liked> hidden<%/if>" action="likePost.html" method="post">
+                       <form class="like<%if post.liked> hidden<%/if>" action="like.html" method="post">
                                <input type="hidden" name="formPassword" value="<% formPassword|html>" />
                                <input type="hidden" name="returnPage" value="<% request.uri|html>" />
+                               <input type="hidden" name="type" value="post" />
                                <input type="hidden" name="post" value="<% post.id|html>" />
                                <button type="submit" value="1"><%= View.Post.LikeLink|l10n|html></button>
                        </form>
-                       <form class="unlike<%if ! post.liked> hidden<%/if>" action="unlikePost.html" method="post">
+                       <form class="unlike<%if ! post.liked> hidden<%/if>" action="unlike.html" method="post">
                                <input type="hidden" name="formPassword" value="<% formPassword|html>" />
                                <input type="hidden" name="returnPage" value="<% request.uri|html>" />
+                               <input type="hidden" name="type" value="post" />
                                <input type="hidden" name="post" value="<% post.id|html>" />
                                <button type="submit" value="1"><%= View.Post.UnlikeLink|l10n|html></button>
                        </form>