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 2018/07/27 09:35:33 UTC

[openmeetings] branch 4.0.x updated: [OPENMEETINGS-1882] validation should be disabled for purge

This is an automated email from the ASF dual-hosted git repository.

solomax pushed a commit to branch 4.0.x
in repository https://gitbox.apache.org/repos/asf/openmeetings.git


The following commit(s) were added to refs/heads/4.0.x by this push:
     new 2bf4475  [OPENMEETINGS-1882] validation should be disabled for purge
2bf4475 is described below

commit 2bf4475fa127ff9a4e6e3ae521cd4e423470bced
Author: Maxim Solodovnik <so...@gmail.com>
AuthorDate: Fri Jul 27 16:35:06 2018 +0700

    [OPENMEETINGS-1882] validation should be disabled for purge
---
 .../main/java/org/apache/openmeetings/web/common/FormActionsPanel.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/openmeetings-web/src/main/java/org/apache/openmeetings/web/common/FormActionsPanel.java b/openmeetings-web/src/main/java/org/apache/openmeetings/web/common/FormActionsPanel.java
index 081b84d..e6c9aa2 100644
--- a/openmeetings-web/src/main/java/org/apache/openmeetings/web/common/FormActionsPanel.java
+++ b/openmeetings-web/src/main/java/org/apache/openmeetings/web/common/FormActionsPanel.java
@@ -82,7 +82,7 @@ public abstract class FormActionsPanel<T> extends Panel {
 				FormActionsPanel.this.onError(target, form);
 			}
 		});
-		purgeBtn = new ConfirmableAjaxBorder("btn-purge", getString("admin.purge"), getString("admin.purge.desc"), form, null, true) {
+		purgeBtn = new ConfirmableAjaxBorder("btn-purge", getString("admin.purge"), getString("admin.purge.desc"), form, null, false) {
 			private static final long serialVersionUID = 1L;
 
 			@Override