[Fusionforge-commits] FusionForge branch Branch_5_2 updated. 92e8272209eee2c297d6f68a2e65385509090483

Roland Mas lolando at fusionforge.org
Wed Jul 10 13:25:06 CEST 2013


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, Branch_5_2 has been updated
       via  92e8272209eee2c297d6f68a2e65385509090483 (commit)
      from  ebb13965c0dfb331e03baa791718d6fdf1daf73f (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 92e8272209eee2c297d6f68a2e65385509090483
Author: Roland Mas <lolando at debian.org>
Date:   Wed Jul 10 13:24:58 2013 +0200

    PHP syntax fix

diff --git a/src/plugins/scmgit/common/GitPlugin.class.php b/src/plugins/scmgit/common/GitPlugin.class.php
index 001db13..d3761e9 100644
--- a/src/plugins/scmgit/common/GitPlugin.class.php
+++ b/src/plugins/scmgit/common/GitPlugin.class.php
@@ -545,9 +545,9 @@ class GitPlugin extends SCMPlugin {
 						// Short-commit stats line
 						preg_match("/^(?P<mode>[AM])\s+(?P<file>.+)$/", $line, $matches);
 						if ($last_user == "") continue;
-						if (!isset ($usr_adds[$last_user]) $usr_adds[$last_user] = 0;
-						if (!isset ($usr_updates[$last_user]) $usr_updates[$last_user] = 0;
-						if (!isset ($usr_deletes[$last_user]) $usr_deletes[$last_user] = 0;
+						if (!isset ($usr_adds[$last_user])) $usr_adds[$last_user] = 0;
+						if (!isset ($usr_updates[$last_user])) $usr_updates[$last_user] = 0;
+						if (!isset ($usr_deletes[$last_user])) $usr_deletes[$last_user] = 0;
 						if ($matches['mode'] == 'A') {
 							$usr_adds[$last_user]++;
 							$adds++;

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

Summary of changes:
 src/plugins/scmgit/common/GitPlugin.class.php |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
FusionForge



More information about the Fusionforge-commits mailing list