From: Alan Knowles Date: Tue, 29 Nov 2011 08:21:20 +0000 (+0800) Subject: MTrack/SCM/Git/CommitHookBridge.php X-Git-Url: http://git.roojs.org/?p=web.mtrack;a=commitdiff_plain;h=82d5e65f6bfb4a8559e6de907117557ded376eca MTrack/SCM/Git/CommitHookBridge.php MTrack/SCM/Git/CommitHookBridge.php --- diff --git a/MTrack/SCM/Git/CommitHookBridge.php b/MTrack/SCM/Git/CommitHookBridge.php index dc8bf047..fbab57b9 100644 --- a/MTrack/SCM/Git/CommitHookBridge.php +++ b/MTrack/SCM/Git/CommitHookBridge.php @@ -38,13 +38,13 @@ class MTrack_SCM_Git_CommitHookBridge extends IMTrackCommitHookBridge if (!preg_match("/^commit\s+(\S+)$/", $line)) { throw new Exception("unexpected output from git log: $line"); } - + $this->props = array(); // read key: value properties like Author: / Date: while (($line = fgets($fp)) !== false) { $line = rtrim($line); if (!strlen($line)) break; if (preg_match("/^(\S+):\s*(.*)\s*$/", $line, $M)) { - $props[$M[1]] = $M[2]; + $this->props[$M[1]] = $M[2]; } } // read the commit log.