From: Florent Bruneau Date: Wed, 22 Jun 2011 17:12:55 +0000 (+0200) Subject: Add a space after quote marks. X-Git-Url: http://git.polytechnique.org/?p=banana.git;a=commitdiff_plain;h=8575148f767c35d84122edf39f9a416010d9e532 Add a space after quote marks. Signed-off-by: Florent Bruneau --- diff --git a/banana/message.func.inc.php b/banana/message.func.inc.php index 3714015..9a59103 100644 --- a/banana/message.func.inc.php +++ b/banana/message.func.inc.php @@ -41,7 +41,7 @@ function banana_quote($line, $level, $mark = '>') $lines = explode("\n", $line); $quote = str_repeat($mark, $level); foreach ($lines as &$line) { - $line = $quote . $line; + $line = $quote . ' ' . $line; } return implode("\n", $lines); }