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, master has been updated
via c77b2adead4cc8733da19aabc8fae327add05b90 (commit)
from f8ebe78334f5c47251e0c819158edfc5a28ebc41 (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=c77b2adead4cc8733da19aabc8fae327add05b90
commit c77b2adead4cc8733da19aabc8fae327add05b90
Author: Franck Villaume <[email protected]>
Date: Fri Aug 18 10:03:30 2017 +0000
wrong var, missing this->
diff --git a/src/plugins/scmdarcs/common/DarcsPlugin.class.php
b/src/plugins/scmdarcs/common/DarcsPlugin.class.php
index 6acffaa..ff66276 100644
--- a/src/plugins/scmdarcs/common/DarcsPlugin.class.php
+++ b/src/plugins/scmdarcs/common/DarcsPlugin.class.php
@@ -420,7 +420,7 @@ over it to the project's administrator.");
$month = $params['month'];
$day = $params['day'];
foreach ($this->getRepositories($project) as
$repo_name) {
- gatherStatsRepo($project, $repo_name, $year,
$month, $day);
+ $this->gatherStatsRepo($project, $repo_name,
$year, $month, $day);
}
}
}
diff --git a/src/plugins/scmgit/common/GitPlugin.class.php
b/src/plugins/scmgit/common/GitPlugin.class.php
index 8d22bc8..916a6ef 100644
--- a/src/plugins/scmgit/common/GitPlugin.class.php
+++ b/src/plugins/scmgit/common/GitPlugin.class.php
@@ -698,14 +698,14 @@ control over it to the project's administrator.");
$start_time = gmmktime(0, 0, 0, $month, $day, $year);
$end_time = $start_time + 86400;
- gatherStatsRepo($project->getUnixName(),
$project->getUnixName(), $year, $month, $day);
+ $this->gatherStatsRepo($project,
$project->getUnixName(), $year, $month, $day);
$result = db_query_params('SELECT repo_name FROM
scm_secondary_repos WHERE group_id=$1 AND plugin_id=$3 ORDER BY repo_name',
array($project->getID(),
$this->getID()));
$rows = db_numrows($result);
for ($i=0; $i<$rows; $i++) {
- gatherStatsRepo($project, db_result($result,
$i, 'repo_name'), $year, $month, $day);
+ $this->gatherStatsRepo(&$project,
db_result($result, $i, 'repo_name'), $year, $month, $day);
}
}
}
-----------------------------------------------------------------------
Summary of changes:
src/plugins/scmdarcs/common/DarcsPlugin.class.php | 2 +-
src/plugins/scmgit/common/GitPlugin.class.php | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
hooks/post-receive
--
FusionForge
_______________________________________________
Fusionforge-commits mailing list
[email protected]
http://lists.fusionforge.org/cgi-bin/mailman/listinfo/fusionforge-commits