[Registry-dev] svn commit r13258 -
branches/registry/1_0/modules/webapps/src/main/webapp/admin
svn at wso2.org
svn at wso2.org
Tue Feb 5 01:44:48 PST 2008
Author: chathura
Date: Tue Feb 5 01:44:44 2008
New Revision: 13258
Log:
Removed the everyone role from add user dialog.
Modified:
branches/registry/1_0/modules/webapps/src/main/webapp/admin/people.jsp
Modified: branches/registry/1_0/modules/webapps/src/main/webapp/admin/people.jsp
==============================================================================
--- branches/registry/1_0/modules/webapps/src/main/webapp/admin/people.jsp (original)
+++ branches/registry/1_0/modules/webapps/src/main/webapp/admin/people.jsp Tue Feb 5 01:44:44 2008
@@ -107,11 +107,12 @@
Iterator i = roleNames.iterator();
while (i.hasNext()) {
String role = (String) i.next();
- %>
+ if (!RegistryConstants.EVERYONE_ROLE.equals(role)) {
+ %>
<option value="<%=role%>"><%=role%></option>
- <% } %>
+ <% }} %>
</select>
</td>
</tr>
More information about the Registry-dev
mailing list