From 8575148f767c35d84122edf39f9a416010d9e532 Mon Sep 17 00:00:00 2001 From: Florent Bruneau Date: Wed, 22 Jun 2011 19:12:55 +0200 Subject: [PATCH] Add a space after quote marks. Signed-off-by: Florent Bruneau --- banana/message.func.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.1.4