This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "FusionForge".

The branch, 6.0 has been updated
       via  fd8f704f6e0f984d9c9f04ce6aed5adda23c3996 (commit)
      from  4b4ea9f40a2a889d241500703213da93f417dbce (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://scm.fusionforge.org/anonscm/gitweb/?p=fusionforge/fusionforge.git;a=commitdiff;h=fd8f704f6e0f984d9c9f04ce6aed5adda23c3996

commit fd8f704f6e0f984d9c9f04ce6aed5adda23c3996
Author: Sylvain Beucler <[email protected]>
Date:   Fri Sep 18 16:13:05 2015 +0200

    scmsvn: fix repo access to RO group

diff --git a/src/CHANGES b/src/CHANGES
index bb76df6..84ec678 100644
--- a/src/CHANGES
+++ b/src/CHANGES
@@ -4,6 +4,7 @@ Fusionforge 6.0.3:
 * Docman: fix filesize sort [#784] (TrivialDev)
 * News: allow moderating news comments even if the Forum tool is disabled 
(Inria)
 * Plugin SCM: fix race condition when creating project with SCM selected 
(Inria)
+* Plugin SCM SVN: fix repo access to RO group (Inria)
 * Plugin SCM Git: work-around for iframe access to private projects' gitweb 
from Firefox 40 (Inria)
 * Plugin Taskboard: remove in-progress French translation (Inria)
 * Plugin Taskboard: block dropping item on columns with resolution "closed" 
[#781] (TrivialDev)
diff --git a/src/plugins/scmsvn/common/SVNPlugin.class.php 
b/src/plugins/scmsvn/common/SVNPlugin.class.php
index bb785a4..494d520 100644
--- a/src/plugins/scmsvn/common/SVNPlugin.class.php
+++ b/src/plugins/scmsvn/common/SVNPlugin.class.php
@@ -307,9 +307,9 @@ some control over it to the project's administrator.");
                }
 
                if ($project->enableAnonSCM()) {
-                       system("chmod g+rX,o+rX-w $repo") ;
+                       system("chmod g+rX-w,o+rX-w $repo") ;
                } else {
-                       system("chmod g+rX,o-rwx $repo") ;
+                       system("chmod g+rX-w,o-rwx $repo") ;
                }
        }
 

-----------------------------------------------------------------------

Summary of changes:
 src/CHANGES                                   | 1 +
 src/plugins/scmsvn/common/SVNPlugin.class.php | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
FusionForge

_______________________________________________
Fusionforge-commits mailing list
[email protected]
http://lists.fusionforge.org/cgi-bin/mailman/listinfo/fusionforge-commits

Reply via email to