projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6aaa7b9
)
must be a string for Exceptions
author
Chuck Hagenbuch
<chuck@horde.org>
Thu, 12 Mar 2009 17:32:52 +0000
(13:32 -0400)
committer
Chuck Hagenbuch
<chuck@horde.org>
Thu, 12 Mar 2009 17:32:52 +0000
(13:32 -0400)
framework/Vcs/lib/Horde/Vcs/Git.php
patch
|
blob
|
history
diff --git
a/framework/Vcs/lib/Horde/Vcs/Git.php
b/framework/Vcs/lib/Horde/Vcs/Git.php
index
04d2d90
..
7338c72
100644
(file)
--- a/
framework/Vcs/lib/Horde/Vcs/Git.php
+++ b/
framework/Vcs/lib/Horde/Vcs/Git.php
@@
-368,7
+368,7
@@
class Horde_Vcs_File_Git extends Horde_Vcs_File
$cmd = $rep->getCommand() . ' rev-list --branches -- ' . escapeshellarg($this->queryModulePath()) . ' 2>&1';
exec($cmd, $revs);
if (stripos($revs[0], 'fatal') === 0) {
- throw new Horde_Vcs_Exception(
$revs
);
+ throw new Horde_Vcs_Exception(
implode(', ', $revs)
);
}
$this->_revs = $revs;