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  5bb286ef728ce19ae7da27be4d1116bf2d5c0b77 (commit)
       via  3facb9937f3ab7cda452ab9340afd503f8ed11c8 (commit)
      from  92c7ac10d6961bb59bd59daf259552f622825c1c (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 -----------------------------------------------------------------
commit 5bb286ef728ce19ae7da27be4d1116bf2d5c0b77
Author: Sylvain Beucler <[email protected]>
Date:   Wed Apr 1 16:13:22 2015 +0200

    homedirs: fix user homedir group

diff --git a/src/cronjobs/shell/homedirs.php b/src/cronjobs/shell/homedirs.php
index 3773b84..595ec11 100755
--- a/src/cronjobs/shell/homedirs.php
+++ b/src/cronjobs/shell/homedirs.php
@@ -125,7 +125,7 @@ foreach(util_result_column_to_array($res,0) as $uname) {
                mkdir($uhome);
                chmod($uhome, 0755);
                chown($uhome, $uname);
-               chgrp($uhome, forge_get_config('users_default_gid'));
+               chgrp($uhome, intval(forge_get_config('users_default_gid')));
        }
 }
 

commit 3facb9937f3ab7cda452ab9340afd503f8ed11c8
Author: Sylvain Beucler <[email protected]>
Date:   Wed Apr 1 14:48:51 2015 +0200

    db: fix include path

diff --git a/src/cronjobs/db/site_stats.php b/src/cronjobs/db/site_stats.php
index 19000d4..fa44b24 100755
--- a/src/cronjobs/db/site_stats.php
+++ b/src/cronjobs/db/site_stats.php
@@ -130,7 +130,7 @@ site_stats_day($year,$month,$day);
 //     populate stats_project table
 //
 $err .= "\n\nBeginning stats_project ".date('Ymd H:i:s',time());
-include 'cronjobs/stats_projects.inc';
+include 'cronjobs/db/stats_projects.inc';
 project_stats_day($year,$month,$day);
 
 cron_entry(11,$err);

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

Summary of changes:
 src/cronjobs/db/site_stats.php  |    2 +-
 src/cronjobs/shell/homedirs.php |    2 +-
 2 files changed, 2 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