Commit c42f35de authored by Daniel Henninger's avatar Daniel Henninger Committed by dhenninger

[JM-1263] Fixed highlighting of current page in paginated displays.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@9909 b35dd754-fafc-0310-a699-88a17e54d16e
parent 2c5e32ab
......@@ -55,7 +55,7 @@
// paginator vars
int numPages = (int)Math.ceil((double)groupCount/(double)range);
int curPage = (start/range) + 1;
%>
%>
<% if (request.getParameter("deletesuccess") != null) { %>
......
......@@ -1000,6 +1000,11 @@ th.jive-table-th-center {
padding:7px;
}
.jive-current {
font-weight : bold;
text-decoration : none;
}
/* --------------------------------------------- */
/* Main content */
/* --------------------------------------------- */
......
......@@ -89,12 +89,6 @@
<title><fmt:message key="user.roster.title"/></title>
<meta name="subPageID" content="user-roster"/>
<meta name="extraParams" content="<%= "username="+URLEncoder.encode(username, "UTF-8") %>"/>
<style type="text/css">
.jive-current {
font-weight: bold;
text-decoration: none;
}
</style>
</head>
<body>
......
......@@ -60,13 +60,6 @@
int curPage = (start/range) + 1;
%>
<style type="text/css">
.jive-current {
font-weight : bold;
text-decoration : none;
}
</style>
<% if (request.getParameter("deletesuccess") != null) { %>
<div class="jive-success">
......
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