First off, kudos to the YAF team for a great product. This was my first ever implementation of YAF and the experience has been great. Installation went smoothly, memberhip and SSO integration with my MVC application is working beautifully, all in all two thumbs up.
I did pick up a couple of small issues:
1) There's a spelling mistake in english.xml:
<Resource tag="ENTER_TEXT">Please enter the reason you're repoorting this post:</Resource>
2) The "Search Users" feature in the admin panel currently ignores the Role and Rank filter criteria. The problem method is the following in DB.cs:
public static DataTable user_list(object boardID, object userID, object approved, object groupID, object rankID)
{
return user_list(boardID, userID, approved, null, null, false);
}
Clearly the two null parameters above is incorrect. Passing groupID and rankID fixed the problem:
public static DataTable user_list(object boardID, object userID, object approved, object groupID, object rankID)
{
return user_list(boardID, userID, approved, groupID, rankID, false);
}
3) Just picked up something now when submitting this post, nested BB codes inside code blocks are ignored, if this is by design then please ignore this point.
I have one question too, I want to display the last 10 forums posts in my application. Is there an existing SP to retrieve the latest posted messages, similar to the "Active Discussions" feature, but for forum posts?
Beyers
Edited by user
13 years ago
|
Reason: Not specified