From 7daa740af37922ae2302391ac02d9950e6858751 Mon Sep 17 00:00:00 2001 From: Chuck Hagenbuch Date: Mon, 22 Jun 2009 22:59:55 -0400 Subject: [PATCH] fix Exception arguments --- framework/Vcs/lib/Horde/Vcs/Git.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.11.0