Commit dab2b66e authored by Daryl Herzmann's avatar Daryl Herzmann Committed by akrherz

JM-1513: typo in DB integration guide FROM / FORM


git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@11254 b35dd754-fafc-0310-a699-88a17e54d16e
parent 8aebcd46
......@@ -261,10 +261,10 @@ integration (see above). Use the following settings to enable group integration.
<jdbcGroupProvider>
<groupCountSQL>SELECT count(*) FROM myGroups</groupCountSQL>
<allGroupsSQL>SELECT groupName FROM myGroups</allGroupsSQL>
<userGroupsSQL>SELECT groupName FORM myGroupUsers WHERE username=?</userGroupsSQL>
<userGroupsSQL>SELECT groupName FROM 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>
<loadMembersSQL>SELECT username FROM myGroupUsers WHERE groupName=? AND isAdmin='N'</loadMembersSQL>
<loadAdminsSQL>SELECT username FROM myGroupUsers WHERE groupName=? AND isAdmin='Y'</loadAdminsSQL>
</jdbcGroupProvider>
...
</jive>
......@@ -275,4 +275,4 @@ integration (see above). Use the following settings to enable group integration.
</div>
</body>
</html>
\ No newline at end of file
</html>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment