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 1c81c9af0fbc67212109e869e17c53f5b1ea7ea0 (commit)
from 24b757f0aa8500b39c77e05870b6b9f6709197d4 (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 1c81c9af0fbc67212109e869e17c53f5b1ea7ea0
Author: Franck Villaume <[email protected]>
Date: Sun May 24 18:40:46 2015 +0200
plugin scmgit: fix wrong test in activity function
diff --git a/src/plugins/scmgit/common/GitPlugin.class.php
b/src/plugins/scmgit/common/GitPlugin.class.php
index c7cca15..c34f6f4 100644
--- a/src/plugins/scmgit/common/GitPlugin.class.php
+++ b/src/plugins/scmgit/common/GitPlugin.class.php
@@ -959,7 +959,7 @@ control over it to the project's administrator.");
}
if (in_array('scmgit', $params['show']) ||
(count($params['show']) < 1)) {
$repo = forge_get_config('repos_path', 'scmgit') . '/'
. $project->getUnixName() . '/' . $project->getUnixName() . '.git';
- if (is_dir($repo) && !is_dir($repo.'/refs')) {
+ if (is_dir($repo) && is_dir($repo.'/refs')) {
$start_time = $params['begin'];
$end_time = $params['end'];
$pipe = popen("GIT_DIR=\"$repo\" git log
--date=raw --since=@$start_time --until=@$end_time --all
--pretty='format:%ad||%ae||%s||%h' --name-status", 'r' );
-----------------------------------------------------------------------
Summary of changes:
src/plugins/scmgit/common/GitPlugin.class.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/plugins/scmgit/common/GitPlugin.class.php
b/src/plugins/scmgit/common/GitPlugin.class.php
index c7cca15..c34f6f4 100644
--- a/src/plugins/scmgit/common/GitPlugin.class.php
+++ b/src/plugins/scmgit/common/GitPlugin.class.php
@@ -959,7 +959,7 @@ control over it to the project's administrator.");
}
if (in_array('scmgit', $params['show']) ||
(count($params['show']) < 1)) {
$repo = forge_get_config('repos_path', 'scmgit') . '/'
. $project->getUnixName() . '/' . $project->getUnixName() . '.git';
- if (is_dir($repo) && !is_dir($repo.'/refs')) {
+ if (is_dir($repo) && is_dir($repo.'/refs')) {
$start_time = $params['begin'];
$end_time = $params['end'];
$pipe = popen("GIT_DIR=\"$repo\" git log
--date=raw --since=@$start_time --until=@$end_time --all
--pretty='format:%ad||%ae||%s||%h' --name-status", 'r' );
hooks/post-receive
--
FusionForge
_______________________________________________
Fusionforge-commits mailing list
[email protected]
http://lists.fusionforge.org/cgi-bin/mailman/listinfo/fusionforge-commits