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. ...@@ -261,10 +261,10 @@ integration (see above). Use the following settings to enable group integration.
<jdbcGroupProvider> <jdbcGroupProvider>
<groupCountSQL>SELECT count(*) FROM myGroups</groupCountSQL> <groupCountSQL>SELECT count(*) FROM myGroups</groupCountSQL>
<allGroupsSQL>SELECT groupName FROM myGroups</allGroupsSQL> <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> <descriptionSQL>SELECT groupDescription FROM myGroups WHERE groupName=?</descriptionSQL>
<loadMembersSQL>SELECT username FORM myGroupUsers WHERE groupName=? AND isAdmin='N'</loadMembersSQL> <loadMembersSQL>SELECT username FROM myGroupUsers WHERE groupName=? AND isAdmin='N'</loadMembersSQL>
<loadAdminsSQL>SELECT username FORM myGroupUsers WHERE groupName=? AND isAdmin='Y'</loadAdminsSQL> <loadAdminsSQL>SELECT username FROM myGroupUsers WHERE groupName=? AND isAdmin='Y'</loadAdminsSQL>
</jdbcGroupProvider> </jdbcGroupProvider>
... ...
</jive> </jive>
...@@ -275,4 +275,4 @@ integration (see above). Use the following settings to enable group integration. ...@@ -275,4 +275,4 @@ integration (see above). Use the following settings to enable group integration.
</div> </div>
</body> </body>
</html> </html>
\ No newline at end of file
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