From: Chuck Hagenbuch Date: Sun, 28 Nov 2010 02:07:06 +0000 (-0500) Subject: Restore linebreaks that had been lost in commit messages X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=9fdb48adfacaa1e36ede19d36aab12be8c0fcc60;p=horde.git Restore linebreaks that had been lost in commit messages --- 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);