svn: SVNROOT/ commit-email.php
[email protected] (Rasmus Lerdorf) Sun, 19 Jul 09 17:18:03 +0000
| Newsgroups | php.cvs,svn.migration |
|---|---|
| Message-ID | <[email protected]> |
--074a55c2bce5d945510d29461291e5e298f892df
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 8bit
rasmus Sun, 19 Jul 2009 17:18:03 +0000
URL: http://svn.php.net/viewvc?view=revision&revision=284382
Changed paths:
U SVNROOT/commit-email.php
Log:
Let's try it without word-wrapping. Let people do their own formatting
in these messages instead.
Modified: SVNROOT/commit-email.php
===================================================================
--- SVNROOT/commit-email.php 2009-07-19 17:13:35 UTC (rev 284381)
+++ SVNROOT/commit-email.php 2009-07-19 17:18:03 UTC (rev 284382)
@@ -236,7 +236,7 @@
"\t" . implode("\r\n\t", $changed_paths) . "\r\n" .
"\r\n" .
"Log:\r\n" .
- wordwrap($commit_log, 72, "\r\n") . "\r\n" .
+ $commit_log . "\r\n" .
"\r\n" .
$diffs_string;
--074a55c2bce5d945510d29461291e5e298f892df--