Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Bugs? plugin: Vanilla Replies
Hi.
I enabled the plugin "Vanilla Replies" which comes with V2&Garden,
I encountered with two problems.
1.
I keep getting the message when I try to start a new discussion following:
"A fatal error occurred while processing the request.
The server returned the following response: parsererror"
Though i got this message, I was able to create the discussion.
When I refresh my browser, it's there.
2.
When posting a comment, the text I wrote stays in the textbox (does not refresh automatically).
The comment section usually refreshed after posting by AJAX, doesn't it?
Anybody have same problem?
I enabled the plugin "Vanilla Replies" which comes with V2&Garden,
I encountered with two problems.
1.
I keep getting the message when I try to start a new discussion following:
"A fatal error occurred while processing the request.
The server returned the following response: parsererror"
Though i got this message, I was able to create the discussion.
When I refresh my browser, it's there.
2.
When posting a comment, the text I wrote stays in the textbox (does not refresh automatically).
The comment section usually refreshed after posting by AJAX, doesn't it?
Anybody have same problem?
0
Comments
- $Sender->SQL->Where('c2.ReplyCommentID is null');
+ $Sender->SQL->Where('c.ReplyCommentID is null');
I also had problems with the js file. These were my fixes in /plugins/VanillaCommentReplies/replies.js:
- $(row).parents('.Comment').find('ul.Info li.ReplyCount a').text(json.Replies);
+ $(row).parents('.Comment').find('li.ReplyCount a').text(json.Replies);
..and..
- $('li.Comment ul.Info li.ReplyCount a').live('click', function() {
+ $('li.Comment li.ReplyCount a').live('click', function() {
These were both pretty obvious fixes, which I assume will be addressed by devs soon. Tho I'm not sure if I should submit my fixes? Or if they're hinging on something else being worked on? The second fix was from a change in the html, ul.Info was now ul.Options, and I just didn't see a reason to be so specific with targeting the "li.ReplyCount a" links.
your always welcome to create an account on github and contribute to the development if thats something your interested in.