From 9fdb48adfacaa1e36ede19d36aab12be8c0fcc60 Mon Sep 17 00:00:00 2001 From: Chuck Hagenbuch Date: Sat, 27 Nov 2010 21:07:06 -0500 Subject: [PATCH] Restore linebreaks that had been lost in commit messages --- framework/Vcs/lib/Horde/Vcs/Log/Git.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/Vcs/lib/Horde/Vcs/Log/Git.php b/framework/Vcs/lib/Horde/Vcs/Log/Git.php index 41718c992..24a431f6b 100644 --- a/framework/Vcs/lib/Horde/Vcs/Log/Git.php +++ b/framework/Vcs/lib/Horde/Vcs/Log/Git.php @@ -94,7 +94,7 @@ class Horde_Vcs_Log_Git extends Horde_Vcs_Log $log = ''; $line = next($lines); while ($line !== false && substr($line, 0, 1) != ':') { - $log .= $line; + $log .= $line . "\n"; $line = next($lines); } $this->_log = trim($log); -- 2.11.0