You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The list of forums on the homepage of the application is not loading anymore
The cause of the issue is that, in page ForumCode.GetForumsJson , the velocity that displays the results interprets wiki syntax: the dot is escaped in the name of the document by a backslash, which is escaped in json with another backslash, which results in 2 backslashes one next to another .
The 2 backslashes is the wiki syntax for newline and when wiki syntax is interpreted, this results in a newline in the middle of a json string, which breaks the json (invalid).
Adding parameter wiki='false' to the velocity macro fixes the issue.