From 35e670a1abe7989500e50b6333d09873cc683a71 Mon Sep 17 00:00:00 2001 From: Thomas Keller Date: Wed, 17 Nov 2010 19:08:41 +0100 Subject: [PATCH] The data structure is already a stdClass object, so add a property, not a key (partially fixes issue 568) --- src/IDF/Scm/Git.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/IDF/Scm/Git.php b/src/IDF/Scm/Git.php index 83a29b0..0befdfb 100644 --- a/src/IDF/Scm/Git.php +++ b/src/IDF/Scm/Git.php @@ -437,7 +437,7 @@ class IDF_Scm_Git extends IDF_Scm $out[0]->changes = ''; } - $out[0]['branch'] = $this->inBranches($commit, null); + $out[0]->branch = $this->inBranches($commit, null); return $out[0]; }