This is an automated email from the ASF dual-hosted git repository.

snoopdave pushed a commit to branch roller-6.0.x
in repository https://gitbox.apache.org/repos/asf/roller.git

commit ca02d5c0c7dc9f3b38f31c78985f22f3cebdcbff
Author: David M. Johnson <[email protected]>
AuthorDate: Sat Dec 14 17:57:52 2019 -0500

    Fix suggested by Greg Huber.
---
 app/src/main/webapp/WEB-INF/jsps/editor/Comments.jsp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/src/main/webapp/WEB-INF/jsps/editor/Comments.jsp 
b/app/src/main/webapp/WEB-INF/jsps/editor/Comments.jsp
index 7a329b9..2fe94d9 100644
--- a/app/src/main/webapp/WEB-INF/jsps/editor/Comments.jsp
+++ b/app/src/main/webapp/WEB-INF/jsps/editor/Comments.jsp
@@ -411,7 +411,7 @@
 
     function editComment(id) {
         // make sure we have the full comment
-        if ($("#link-" + id).size() > 0) readMoreComment(id, editComment);
+        if ($("#link-" + id).length > 0) readMoreComment(id, editComment);
 
         // save the original comment value
         comments[id] = $("#comment-" + id).html();

Reply via email to