dokufreaks / plugin-discussion

Add a comments section to DokuWiki pages
https://www.dokuwiki.org/plugin:discussion
GNU General Public License v2.0
35 stars 26 forks source link

Replies not visible. #357

Open mosely1 opened 2 months ago

mosely1 commented 2 months ago

I have the plugin configured to "allow threading of comments". There is a button for "Reply" on comments, but when I submit a reply, no thread is visible.... so replies are invisible.

mosely1 commented 2 months ago

I realized my problem has been commented before and a workaround solution has been proposed. https://github.com/dokufreaks/plugin-discussion/issues/349#issuecomment-2211755013

change action.php:956 from if (!empty($comment['replies'])) to if (empty($comment['replies'])). The condition is inverted.