public void editComment(User p, int threadID, int commentID, String description)
        {
            ThreadInfo t = getThreadForID(threadID);

            if (t != null)
            {
                CommentInfo c = t.getCommentForID(commentID);
                if (c != null)
                {
                    if (p.account.name == c.owner)
                    {
                        c.comment = description;
                        controller.messageSender.sendUpdateCommentToAll(c);
                    }
                }
            }
        }
        public void deleteComment(User p, int threadID, int commentID)
        {
            ThreadInfo t = getThreadForID(threadID);

            if (t != null)
            {
                CommentInfo c = t.getCommentForID(commentID);
                if (c != null)
                {
                    if (p.account.name == c.owner)
                    {
                        t.comments.Remove(c);
                        controller.messageSender.sendDeleteCommentToAll(c);

                        //Send a message to the All Controller
                        //controller.server.allSection.threadController.updateCommentCount(controller.name, t.id, t.comments.length);
                    }
                }
            }
        }