From 947aa18ca593a2b466cfc5d31ad97a9a437dccca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20T=C3=A4nzer?= Date: Wed, 3 Oct 2012 00:28:19 +0200 Subject: bug 1091: Thou shall not use \n in single quotes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michael Tänzer --- includes/mysql.php.sample | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes/mysql.php.sample') diff --git a/includes/mysql.php.sample b/includes/mysql.php.sample index ff5cfc3..eb86401 100644 --- a/includes/mysql.php.sample +++ b/includes/mysql.php.sample @@ -28,7 +28,7 @@ function sendmail($to, $subject, $message, $from, $replyto = "", $toname = "", $fromname = "", $errorsto = "returns@cacert.org", $extra="") { - $lines = explode('\n', $message); + $lines = explode("\n", $message); $message = ""; foreach($lines as $line) { -- cgit v1.2.1