From 3d1d4d670a2b1cc05b902a2bd510d8c71994cc47 Mon Sep 17 00:00:00 2001
From: Johannes Buehler <johannes.buehler@canoo.com>
Date: Fri, 30 Mar 2012 17:18:27 -0400
Subject: [PATCH] removed wrong char from page, which caused IE8 no to display the save button
---
src/com/gitblit/SyndicationFilter.java | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/src/com/gitblit/SyndicationFilter.java b/src/com/gitblit/SyndicationFilter.java
index d6dd1f2..7e2561b 100644
--- a/src/com/gitblit/SyndicationFilter.java
+++ b/src/com/gitblit/SyndicationFilter.java
@@ -55,6 +55,18 @@
}
/**
+ * Determine if the action may be executed on the repository.
+ *
+ * @param repository
+ * @param action
+ * @return true if the action may be performed
+ */
+ @Override
+ protected boolean isActionAllowed(RepositoryModel repository, String action) {
+ return true;
+ }
+
+ /**
* Determine if the repository requires authentication.
*
* @param repository
--
Gitblit v1.9.1