Documentation Incorrect

I don’t see where I could report this directly to the admins, but there is a typo here:

http://www.igniterealtime.org/builds/openfire/docs/latest/documentation/db-integ ration-guide.html

<jdbcGroupProvider>
       <groupCountSQL>SELECT count(*) FROM myGroups</groupCountSQL>
       <allGroupsSQL>SELECT groupName FROM myGroups</allGroupsSQL>
       <userGroupsSQL>SELECT groupName FORM myGroupUsers WHERE username=?</userGroupsSQL>
       <descriptionSQL>SELECT groupDescription FROM myGroups WHERE groupName=?</descriptionSQL>
       <loadMembersSQL>SELECT username FORM myGroupUsers WHERE groupName=? AND isAdmin='N'</loadMembersSQL>
       <loadAdminsSQL>SELECT username FORM myGroupUsers WHERE groupName=? AND isAdmin='Y'</loadAdminsSQL>
  </jdbcGroupProvider>

“FORM” is incorrect - it should be “FROM”

JM-1513 created to track this issue.

http://www.igniterealtime.org/community/docs/DOC-1161 describes how bug reporting should work.

LG

Ok, thank you!