Index: group-summary.jsp =================================================================== --- group-summary.jsp (revision 10366) +++ group-summary.jsp (working copy) @@ -51,6 +51,12 @@ // Get the count as a search for *all* groups. That will let us do pagination even // though it's a bummer to execute the search twice. groupCount = webManager.getGroupManager().search(search).size(); + // If we find only one group, just forward on to + if (groupCount == 1) + { + response.sendRedirect("group-edit.jsp?group="+ URLEncoder.encode(groups.iterator().next().getName(), "UTF-8") ); + return; + } } // paginator vars @@ -224,4 +230,4 @@ <% } %> - \ No newline at end of file +