You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openmeetings.apache.org by so...@apache.org on 2015/08/12 11:35:31 UTC

svn commit: r1695461 - in /openmeetings/branches/3.0.x/src/web/java/org/apache/openmeetings/web/admin/connection: ConnectionsPanel.html ConnectionsPanel.java

Author: solomax
Date: Wed Aug 12 09:35:31 2015
New Revision: 1695461

URL: http://svn.apache.org/r1695461
Log:
[OPENMEETINGS-1125] runtime error while displaying connection list is fixed

Modified:
    openmeetings/branches/3.0.x/src/web/java/org/apache/openmeetings/web/admin/connection/ConnectionsPanel.html
    openmeetings/branches/3.0.x/src/web/java/org/apache/openmeetings/web/admin/connection/ConnectionsPanel.java

Modified: openmeetings/branches/3.0.x/src/web/java/org/apache/openmeetings/web/admin/connection/ConnectionsPanel.html
URL: http://svn.apache.org/viewvc/openmeetings/branches/3.0.x/src/web/java/org/apache/openmeetings/web/admin/connection/ConnectionsPanel.html?rev=1695461&r1=1695460&r2=1695461&view=diff
==============================================================================
--- openmeetings/branches/3.0.x/src/web/java/org/apache/openmeetings/web/admin/connection/ConnectionsPanel.html (original)
+++ openmeetings/branches/3.0.x/src/web/java/org/apache/openmeetings/web/admin/connection/ConnectionsPanel.html Wed Aug 12 09:35:31 2015
@@ -51,9 +51,7 @@
 						<td wicket:id="since"></td>
 						<td wicket:id="scope"></td>
 						<td><a wicket:id="kick"><wicket:message key="603" /></a></td>
-						<!--  
-						<td wicket:id="server"></td> 
-						-->
+						<td>&nbsp;</td>
 					</tr>
 				</tbody>
 			</table>

Modified: openmeetings/branches/3.0.x/src/web/java/org/apache/openmeetings/web/admin/connection/ConnectionsPanel.java
URL: http://svn.apache.org/viewvc/openmeetings/branches/3.0.x/src/web/java/org/apache/openmeetings/web/admin/connection/ConnectionsPanel.java?rev=1695461&r1=1695460&r2=1695461&view=diff
==============================================================================
--- openmeetings/branches/3.0.x/src/web/java/org/apache/openmeetings/web/admin/connection/ConnectionsPanel.java (original)
+++ openmeetings/branches/3.0.x/src/web/java/org/apache/openmeetings/web/admin/connection/ConnectionsPanel.java Wed Aug 12 09:35:31 2015
@@ -155,7 +155,6 @@ public class ConnectionsPanel extends Ad
 				item.add(new Label("login", getBean(UserService.class).getUserById(getSid(), c.getUserId()).getLogin()));
 				item.add(new Label("since", c.getConnectedSince()));
 				item.add(new Label("scope", "hibernate"));
-				item.add(new Label("server", "no cluster"));
 				item.add(new ConfirmableAjaxLink("kick", 605) {
 					private static final long serialVersionUID = 1L;