From: Chuck Hagenbuch Date: Tue, 23 Jun 2009 02:59:55 +0000 (-0400) Subject: fix Exception arguments X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=7daa740af37922ae2302391ac02d9950e6858751;p=horde.git fix Exception arguments --- diff --git a/framework/Vcs/lib/Horde/Vcs/Git.php b/framework/Vcs/lib/Horde/Vcs/Git.php index 7722607ae..7bb108729 100644 --- a/framework/Vcs/lib/Horde/Vcs/Git.php +++ b/framework/Vcs/lib/Horde/Vcs/Git.php @@ -482,7 +482,7 @@ class Horde_Vcs_File_Git extends Horde_Vcs_File if (!empty($revs)) { if (stripos($revs[0], 'fatal') === 0) { - throw new Horde_Vcs_Exception($revs); + throw new Horde_Vcs_Exception(implode(', ', $revs)); } $this->_revlist[$key] = $revs;